summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apache/manifests
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2017-01-16 15:15:41 -0200
committervarac <varacanero@zeromail.org>2017-01-18 18:44:21 +0100
commit5126584fe40f08b779a6f93e2d1b6b57bae29700 (patch)
treeb0aeb4387bdf4f7f3e6865f72294c47c0210b588 /puppet/modules/site_apache/manifests
parent0117808a130c36f14f5b86879b52ed7ce2fa6d57 (diff)
Add apache auto-restart extension file
Diffstat (limited to 'puppet/modules/site_apache/manifests')
-rw-r--r--puppet/modules/site_apache/manifests/common.pp1
-rw-r--r--puppet/modules/site_apache/manifests/common/extensions.pp14
2 files changed, 15 insertions, 0 deletions
diff --git a/puppet/modules/site_apache/manifests/common.pp b/puppet/modules/site_apache/manifests/common.pp
index 208c15d5..c96932dd 100644
--- a/puppet/modules/site_apache/manifests/common.pp
+++ b/puppet/modules/site_apache/manifests/common.pp
@@ -28,5 +28,6 @@ class site_apache::common {
include site_apache::common::tls
include site_apache::common::acme
+ include site_apache::common::extensions
}
diff --git a/puppet/modules/site_apache/manifests/common/extensions.pp b/puppet/modules/site_apache/manifests/common/extensions.pp
new file mode 100644
index 00000000..ddeafae0
--- /dev/null
+++ b/puppet/modules/site_apache/manifests/common/extensions.pp
@@ -0,0 +1,14 @@
+class site_apache::common::extensions {
+
+ include ::systemd
+ file { '/etc/systemd/system/apache2.service.d/auto_restart.conf':
+ source => 'puppet:///modules/site_apache/auto_restart.conf',
+ owner => 'root',
+ group => 'root',
+ mode => '0644',
+ require => [
+ Service['apache']
+ ]
+ }~>
+ Exec['systemctl-daemon-reload']
+}