diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-02-08 15:33:08 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-02-08 15:33:08 -0200 |
commit | b5c24781e769bb0206fa2a3db29a4a542cb96bc4 (patch) | |
tree | 31918560487419a99f80d533ed5c641e2be1db20 | |
parent | cd87827c006002dbbc60ff9680b1efc7cb8b0cd1 (diff) | |
download | puppet-php-b5c24781e769bb0206fa2a3db29a4a542cb96bc4.tar.gz puppet-php-b5c24781e769bb0206fa2a3db29a4a542cb96bc4.tar.bz2 |
Per host and domain php.ini
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 6 insertions, 2 deletions
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'], } |