Puppet Class: confdroid_alloy::main::service
- Inherits:
- confdroid_alloy::params
- Defined in:
- manifests/main/service.pp
Summary
Class manages the alloy serviceOverview
confdroid_alloy::main::service.pp Module name: confdroid_alloy Author: 12ww1160 (12ww1160@confdroid.com)
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/main/service.pp', line 6
class confdroid_alloy::main::service (
) inherits confdroid_alloy::params {
require confdroid_alloy::main::files
service { $ay_service:
ensure => running,
hasstatus => true,
hasrestart => true,
enable => true,
}
}
|