19 lines
495 B
Puppet
19 lines
495 B
Puppet
## cd_apache::server::service.pp
|
|
# Module name: cd_apache
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary manage the httpd service.
|
|
##############################################################################
|
|
class cd_apache::server::service (
|
|
|
|
) inherits cd_apache::params {
|
|
require cd_apache::server::files
|
|
require cd_apache::firewall::iptables
|
|
|
|
service { $ae_service:
|
|
ensure => running,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
enable => true,
|
|
}
|
|
}
|