2025-02-24 12:22:07 +01:00
|
|
|
## cd_alloy::main::service.pp
|
2025-02-24 12:08:01 +01:00
|
|
|
# Module name: cd_alloy
|
2025-02-24 12:02:24 +01:00
|
|
|
# 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
|
|
|
|
|
|
2025-02-24 13:24:45 +01:00
|
|
|
service { $ay_service:
|
2025-03-02 13:15:07 +01:00
|
|
|
ensure => running,
|
|
|
|
|
hasstatus => true,
|
|
|
|
|
hasrestart => true,
|
|
|
|
|
enable => true,
|
2025-02-24 13:24:45 +01:00
|
|
|
}
|
2025-02-24 12:02:24 +01:00
|
|
|
}
|