From: Silvio Rhatto Date: Wed, 8 Feb 2012 17:33:08 +0000 (-0200) Subject: Per host and domain php.ini X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=b5c24781e769bb0206fa2a3db29a4a542cb96bc4;p=puppet-php.git Per host and domain php.ini --- diff --git a/manifests/init.pp b/manifests/init.pp index 9961db3..998616c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -34,7 +34,9 @@ class php { owner => root, group => root, mode => 0644, - source => "puppet://$server/modules/php/cli/php.ini", + source => [ "puppet://$server/modules/site-php/cli/$fqdn/php.ini", + "puppet://$server/modules/site-php/cli/$domain/php.ini", + "puppet://$server/modules/php/cli/php.ini" ] require => Package['php5-cli'], } @@ -43,7 +45,9 @@ class php { owner => root, group => root, mode => 0644, - source => "puppet://$server/modules/php/apache2/php.ini", + source => [ "puppet://$server/modules/site-php/apache2/$fqdn/php.ini", + "puppet://$server/modules/site-php/apache2/$domain/php.ini", + "puppet://$server/modules/php/apache2/php.ini" ] notify => Service['apache2'], require => Package['php5'], }