summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apache/manifests/common/autorestart.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_apache/manifests/common/autorestart.pp')
-rw-r--r--puppet/modules/site_apache/manifests/common/autorestart.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/puppet/modules/site_apache/manifests/common/autorestart.pp b/puppet/modules/site_apache/manifests/common/autorestart.pp
new file mode 100644
index 00000000..aa13d4ef
--- /dev/null
+++ b/puppet/modules/site_apache/manifests/common/autorestart.pp
@@ -0,0 +1,15 @@
+#
+# Adds autorestart extension to apache on crash
+#
+class site_apache::common::autorestart {
+
+ include ::systemd
+ file { '/etc/systemd/system/apache2.service.d/autorestart.conf':
+ source => 'puppet:///modules/site_apache/autorestart.conf',
+ owner => 'root',
+ group => 'root',
+ mode => '0644',
+ require => Service['apache'],
+ notify => Exec['systemctl-daemon-reload']
+ }
+}