From e27d1d01b2629955c4431c6b13f190d39b5034fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ngel=20L=2E=20Mateo?= Date: Thu, 11 Oct 2018 07:37:49 +0200 Subject: [PATCH] ensure could also be 'latest' ensure could also have the value `latest`, so this commit consider this case. --- manifests/extension/config.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/extension/config.pp b/manifests/extension/config.pp index 83a1f250..b2871e91 100644 --- a/manifests/extension/config.pp +++ b/manifests/extension/config.pp @@ -90,7 +90,7 @@ } $config_root_ini = pick_default($php::config_root_ini, $php::params::config_root_ini) - if $ensure == 'present' or $ensure == 'installed' { + if $ensure == 'present' or $ensure == 'installed' or $ensure == 'latest' { ::php::config { $title: file => "${config_root_ini}/${ini_prefix}${ini_name}.ini", config => $final_settings,