Puppet Class: smokeping::service
- Defined in:
- manifests/service.pp
Summary
Manage SmokePing serviceOverview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/service.pp', line 2
class smokeping::service {
assert_private()
$ensure = $smokeping::start ? {
true => running,
false => stopped,
default => undef,
}
service { 'smokeping':
ensure => $ensure,
enable => $smokeping::enable,
}
}
|