Puppet Class: cntlm::service
- Defined in:
- manifests/service.pp
Summary
Manages the cntlm serviceOverview
cntlm::service
Manages the cntlm service
7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/service.pp', line 7
class cntlm::service {
if $cntlm::service_manage == true {
service { 'cntlm':
ensure => $cntlm::service_ensure,
enable => $cntlm::service_enable,
name => $cntlm::service_name,
provider => $cntlm::service_provider,
hasstatus => true,
hasrestart => true,
}
}
}
|