diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-04-08 13:11:39 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-04-08 13:11:39 +0000 |
commit | e862a1e66633a9a89bd5032e8090bf108e844bfc (patch) | |
tree | bca9bde399735438ba4dab8bd9d502e8005e8150 | |
parent | 3b02628689530ee95e4e54802b36e9a649e54913 (diff) | |
download | puppet-e862a1e66633a9a89bd5032e8090bf108e844bfc.tar puppet-e862a1e66633a9a89bd5032e8090bf108e844bfc.tar.gz puppet-e862a1e66633a9a89bd5032e8090bf108e844bfc.tar.bz2 puppet-e862a1e66633a9a89bd5032e8090bf108e844bfc.tar.xz puppet-e862a1e66633a9a89bd5032e8090bf108e844bfc.zip |
fix permission on php.ini
-rw-r--r-- | modules/php/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/php/manifests/init.pp b/modules/php/manifests/init.pp index 3d8b00fd..777e978f 100644 --- a/modules/php/manifests/init.pp +++ b/modules/php/manifests/init.pp @@ -11,7 +11,7 @@ class php { ensure => present, owner => root, group => root, - mode => 755, + mode => 644, require => Package['php-ini'], content => template('php/php.ini'), } |