summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apache/manifests/common/autorestart.pp
blob: f8213439f65836965af7e1465ad814887304716c (plain)
1
2
3
4
5
6
7
8
9
10
#
# Adds autorestart extension to apache on crash
#
class site_apache::common::autorestart {

  ::systemd::unit_file { '/etc/systemd/system/apache2.service.d/autorestart.conf':
    source  => 'puppet:///modules/site_apache/autorestart.conf',
    require => Service['apache'],
  }
}