diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-25 12:20:27 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-25 12:20:27 +0000 |
commit | 0f8d9354df4b3fa9bdb3876528b131ed9a0d9d79 (patch) | |
tree | 43b7de6aac068b86dab834afb65777bfef14723d /modules/apache/manifests/mod/php.pp | |
parent | f83e2c85a7f0d2402982942150688b7373a9d5ab (diff) | |
download | puppet-0f8d9354df4b3fa9bdb3876528b131ed9a0d9d79.tar puppet-0f8d9354df4b3fa9bdb3876528b131ed9a0d9d79.tar.gz puppet-0f8d9354df4b3fa9bdb3876528b131ed9a0d9d79.tar.bz2 puppet-0f8d9354df4b3fa9bdb3876528b131ed9a0d9d79.tar.xz puppet-0f8d9354df4b3fa9bdb3876528b131ed9a0d9d79.zip |
split mod_php in a separate file
Diffstat (limited to 'modules/apache/manifests/mod/php.pp')
-rw-r--r-- | modules/apache/manifests/mod/php.pp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/apache/manifests/mod/php.pp b/modules/apache/manifests/mod/php.pp new file mode 100644 index 00000000..28ac6e31 --- /dev/null +++ b/modules/apache/manifests/mod/php.pp @@ -0,0 +1,10 @@ +class apache::mod::php { + include apache::base + $php_date_timezone = 'UTC' + + package { 'apache-mod_php': } + + apache::config { '/etc/httpd/conf.d/mod_php.conf': + content => template('apache/mod_php.conf'), + } +} |