summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apache/manifests/common/autorestart.pp
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2017-01-17 11:03:14 -0200
committerTulio Casagrande <tcasagra@thoughtworks.com>2017-01-17 14:23:20 -0200
commit810df8983e3ada8ad4b0ebbc7e0e3cf01219e33c (patch)
treeca38c6453801d992168499820335b3110b2c06d0 /puppet/modules/site_apache/manifests/common/autorestart.pp
parent65604b35e96c4ca6e83c2d90b1c512dfa7ff31e7 (diff)
Rename extensions module to autorestart
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']
+ }
+}