Puppet Class: znapzend::service
- Defined in:
- manifests/service.pp
Overview
This class is meant to be called from znapzend to manage the znapzend service.
5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/service.pp', line 5
class znapzend::service {
assert_private('znapzend::service is a private class')
service { $::znapzend::service_name:
ensure => $::znapzend::service_ensure,
enable => $::znapzend::service_enable,
hasstatus => true,
hasrestart => true,
}
}
|