From: Silvio Rhatto Date: Thu, 2 Jan 2014 21:41:52 +0000 (-0200) Subject: Fix php.ini lookup for apache2 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=85a310abc11c77cfda10d2e3a9ee9d06bc523195;p=puppet-php.git Fix php.ini lookup for apache2 --- 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'],