18 lines
482 B
Puppet
18 lines
482 B
Puppet
## confdroid_alloy::main::service.pp
|
|
# Module name: confdroid_alloy
|
|
# Author: 12ww1160 (12ww1160@confdroid.com)
|
|
# @summary Class manages the alloy service
|
|
###############################################################################
|
|
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,
|
|
}
|
|
}
|