diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-07-05 15:58:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-07-05 15:58:07 -0300 |
commit | 1f392e5dcf2432d26b329d487dbcbfef31a5868f (patch) | |
tree | 7cbe23412f296d80a0cb784c4565ed100c9e5384 | |
parent | c51d63620a67dc6bba6d3249499d025e15ce8b37 (diff) | |
download | puppet-php-1f392e5dcf2432d26b329d487dbcbfef31a5868f.tar.gz puppet-php-1f392e5dcf2432d26b329d487dbcbfef31a5868f.tar.bz2 |
Default order for php::config
-rw-r--r-- | manifests/config.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/config.pp b/manifests/config.pp index 287cd0c..4da042e 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -1,4 +1,4 @@ -define php::config($order, $value, $ensure = 'present', $sapi = 'apache2') { +define php::config($order = '20', $value, $ensure = 'present', $sapi = 'apache2') { file { "${::php::folder}/${sapi}/conf.d/${order}-${name}.ini": ensure => $ensure, owner => root, |