diff options
Diffstat (limited to 'modules/apache/manifests')
-rw-r--r-- | modules/apache/manifests/init.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index d4038afe..3ee7b91d 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -43,6 +43,15 @@ class apache { package { "apache-mod_php": ensure => installed } + + file { "/etc/httpd/conf.d/mod_php.conf": + ensure => present, + owner => root, + group => root, + mode => 644, + require => Package['apache-conf'], + content => template('apache/mod_php.conf') + } } class mod_perl inherits base { |