add basic structure

This commit is contained in:
Arne Teuke
2025-06-02 17:03:06 +02:00
parent c8d99f045e
commit 2bc5d9a1aa
8 changed files with 154 additions and 4 deletions

17
manifests/main/service.pp Normal file
View File

@@ -0,0 +1,17 @@
## automatic_cd::main::service.pp
# Module name: automatic_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages services for the automatic_cd module
##############################################################################
class automatic_cd::main::service (
) inherits automatic_cd::params {
require automatic_cd::main::files
service { $ac_service:
ensure => running,
hasstatus => true,
hasrestart => true,
enable => true,
}
}