forked from thias/puppet-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_php5.pp
32 lines (27 loc) · 846 Bytes
/
mod_php5.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Class: php::mod_php5
#
# Apache httpd PHP module. Requires the 'httpd' service and package to be
# declared somewhere, usually from the apache_httpd module.
#
# Sample Usage :
# php::ini { '/etc/php-httpd.ini': }
# class { 'php::mod_php5': inifile => '/etc/php-httpd.ini' }
#
class php::mod_php5 (
$ensure = 'installed',
$inifile = '/etc/php.ini',
) inherits ::php::params {
package { $php_package_name:
ensure => $ensure,
require => File[$inifile],
notify => Service[$httpd_service_name],
}
# Custom httpd conf snippet
file { "${httpd_conf_dir}/php.conf":
content => template('php/httpd/php.conf.erb'),
require => Package[$httpd_package_name],
notify => Service[$httpd_service_name],
}
# Notify the httpd service for any php.ini changes too
File[$inifile] ~> Service[$httpd_service_name]
}