19 lines
533 B
Puppet
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,
|
|
}
|
|
}
|