Files
confdroid_apache/manifests/server/service.pp
2026-02-03 00:41:35 +01:00

19 lines
533 B
Puppet

## confdroid_apache::server::service.pp
# Module name: confdroid_apache
# Author: 12ww1160 (12ww1160@confdroid.com)
# @summary manage the httpd service.
##############################################################################
class confdroid_apache::server::service (
) inherits confdroid_apache::params {
require confdroid_apache::server::files
require confdroid_apache::firewall::iptables
service { $ae_service:
ensure => running,
hasstatus => true,
hasrestart => true,
enable => true,
}
}