Files
confdroid_alloy/manifests/main/service.pp

18 lines
451 B
ObjectPascal
Raw Normal View History

2025-03-02 13:49:35 +01:00
## alloy_cd::main::service.pp
# Module name: alloy_cd
2025-02-24 12:02:24 +01:00
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages the alloy service
###############################################################################
2025-03-02 13:49:35 +01:00
class alloy_cd::main::service (
2025-02-24 12:02:24 +01:00
2025-03-02 13:49:35 +01:00
) inherits alloy_cd::params {
require alloy_cd::main::files
2025-02-24 12:02:24 +01:00
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
}