19 lines
456 B
Puppet
19 lines
456 B
Puppet
## cd_alloy::main::service.pp
|
|
# Module name: cd_alloy
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary Class manages the alloy service
|
|
###############################################################################
|
|
class cd_alloy::main::service (
|
|
|
|
) inherits cd_alloy::params {
|
|
|
|
require cd_alloy::main::files
|
|
|
|
service { $ay_service:
|
|
ensure => running,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
enable => true,
|
|
}
|
|
}
|