Puppet Class: smokeping::service
- Defined in:
- manifests/service.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/service.pp', line 1
class smokeping::service {
$ensure = $smokeping::start ? {
true => running,
false => stopped,
default => undef,
}
service { 'smokeping':
ensure => $ensure,
enable => $smokeping::enable,
}
}
|