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