Puppet Class: confdroid_apache::server::service

Inherits:
confdroid_apache::params
Defined in:
manifests/server/service.pp

Summary

manage the httpd service.

Overview

confdroid_apache::server::service.pp Module name: confdroid_apache Author: 12ww1160 (12ww1160@confdroid.com)



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/server/service.pp', line 6

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,
  }
}