diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-01-02 19:41:52 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-01-02 19:41:52 -0200 |
commit | 85a310abc11c77cfda10d2e3a9ee9d06bc523195 (patch) | |
tree | d5fdff7b74ffebf6d2aa76d6d056fbc7e97c8001 | |
parent | 16b64c98a5932efdcfcb93afa6612951ec9f17b4 (diff) | |
download | puppet-php-85a310abc11c77cfda10d2e3a9ee9d06bc523195.tar.gz puppet-php-85a310abc11c77cfda10d2e3a9ee9d06bc523195.tar.bz2 |
Fix php.ini lookup for apache2
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 7813b41..dff87c9 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -64,8 +64,8 @@ class php { mode => 0644, source => [ "puppet:///modules/site_php/apache2/${::fqdn}/php.ini", "puppet:///modules/site_php/apache2/${::domain}/php.ini", - "puppet:///modules/php/cli/php.${::operatingsystem}_${::lsbdistcodename}.ini", - "puppet:///modules/php/cli/php.${::operatingsystem}.ini", + "puppet:///modules/php/apache2/php.${::operatingsystem}_${::lsbdistcodename}.ini", + "puppet:///modules/php/apache2/php.${::operatingsystem}.ini", "puppet:///modules/php/apache2/php.ini" ], notify => Service['apache2'], require => Package['php5'], |