Puppet Class: epics::ioc::unix_domain_socket
- Defined in:
- manifests/ioc/unix_domain_socket.pp
Summary
Install tools to connect to procServ using Unix domain sockets.Overview
Install netcat to allow IOC engineers to connect to the IOC shell using the Unix domain sockets provided by procServ.
14 15 16 17 18 19 20 |
# File 'manifests/ioc/unix_domain_socket.pp', line 14
class epics::ioc::unix_domain_socket(
String $netcat_openbsd_ensure,
) {
package { 'netcat-openbsd':
ensure => $netcat_openbsd_ensure,
}
}
|