Skip to content

Commit

Permalink
Merge pull request #493 from amateo/fix_ensure_extension
Browse files Browse the repository at this point in the history
Simplify ensure check
  • Loading branch information
bastelfreak authored Nov 2, 2018
2 parents 4bd7ea2 + d697848 commit 07003d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/extension/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
}

$config_root_ini = pick_default($php::config_root_ini, $php::params::config_root_ini)
if $ensure == 'present' or $ensure == 'installed' or $ensure == 'latest' {
if $ensure != 'absent' {
::php::config { $title:
file => "${config_root_ini}/${ini_prefix}${ini_name}.ini",
config => $final_settings,
Expand Down

0 comments on commit 07003d6

Please sign in to comment.