Puppet Class: apache::mod::suphp

Defined in:
manifests/mod/suphp.pp

Summary

Installs `mod_suphp`.

Overview



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/mod/suphp.pp', line 6

class apache::mod::suphp (
) {
  if $facts['os']['family'] == 'Debian' {
    fail("suphp was declared EOL by it's creators as of 2013 and so is no longer supported on Ubuntu 15.10/Debian 8 and above. Please use php-fpm")
  }
  include apache
  ::apache::mod { 'suphp': }

  file { 'suphp.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/suphp.conf",
    mode    => $apache::file_mode,
    content => template('apache/mod/suphp.conf.erb'),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}