Puppet Class: beegfs::mgmtd::install
- Defined in:
- manifests/mgmtd/install.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/mgmtd/install.pp', line 2
class beegfs::mgmtd::install {
if $beegfs::mgmtd_service_autorestart {
$mgmtd_notify = Service['beegfs-mgmtd']
} else {
$mgmtd_notify = undef
}
package { 'beegfs-mgmtd':
ensure => $beegfs::version,
name => $beegfs::mgmtd_package,
notify => $mgmtd_notify,
}
}
|