Puppet Class: epics::catools
- Defined in:
- manifests/catools.pp
Summary
Install Channel Access command line tools.Overview
Installs the Channel Access command line tools provided by EPICS Base (caget, cainfo, camonitor, caput, caRepeater, casw).
15 16 17 18 19 20 21 |
# File 'manifests/catools.pp', line 15
class epics::catools(
String $ensure
) {
package { 'epics-catools':
ensure => $ensure,
}
}
|