You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... but there is never anything that cleans up old/stale/unmanaged settings.
In an older version of this module, a possible workaround was to use undef for values that you'd like to remove, but that's no longer possible due to the typing. #654 re-enables that.
Affected Puppet, Ruby, OS and module versions/distributions
Puppet:
Ruby:
Distribution: Ubuntu 20.04
Module version: 8.0.2
The text was updated successfully, but these errors were encountered:
mpdude
added a commit
to mpdude/puppet-php
that referenced
this issue
Jan 13, 2022
When using this:
... and you later change it to ...
... the
some.setting
is not removed from the...some-extension.ini
file.The reason probably is that the
settings
hash is converted into::php::config::setting
s here:puppet-php/manifests/config.pp
Line 28 in 82a1698
... which in turn becomes an
ini_setting
:puppet-php/manifests/config/setting.pp
Lines 43 to 49 in 82a1698
... but there is never anything that cleans up old/stale/unmanaged settings.
In an older version of this module, a possible workaround was to use
undef
for values that you'd like to remove, but that's no longer possible due to the typing. #654 re-enables that.Affected Puppet, Ruby, OS and module versions/distributions
The text was updated successfully, but these errors were encountered: