Files

18 lines
482 B
ObjectPascal
Raw Permalink Normal View History

2026-07-21 13:25:48 +02:00
## confdroid_alloy::main::service.pp
# Module name: confdroid_alloy
# Author: 12ww1160 (12ww1160@confdroid.com)
2025-02-24 12:02:24 +01:00
# @summary Class manages the alloy service
###############################################################################
2026-07-21 13:25:48 +02:00
class confdroid_alloy::main::service (
2025-02-24 12:02:24 +01:00
2026-07-21 13:25:48 +02:00
) inherits confdroid_alloy::params {
require confdroid_alloy::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
}