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
currently the class parameters settings, extensions, fpm_pools, fpm_global_pool_settings are getting "double" looked up and merged.
because of puppets Automatic class parameter lookup, which already supports the lookup behaviors first, unique, hash or deep, it comes to an unexpected behavior if the lookup_option in the hiera file is anything else than deep (first is the default)
currently the class parameters
settings
,extensions
,fpm_pools
,fpm_global_pool_settings
are getting "double" looked up and merged.because of puppets Automatic class parameter lookup, which already supports the lookup behaviors
first
,unique
,hash
ordeep
, it comes to an unexpected behavior if thelookup_option
in the hiera file is anything else thandeep
(first
is the default)https://puppet.com/docs/puppet/5.3/hiera_automatic.html
https://puppet.com/docs/puppet/5.0/hiera_merging.html
common.yaml
my.example.com.yaml
should result in
{ soap }
onmy.example.com
but because of this bug, it results in{ soap, bcmath }
the following code snippet where
deep
is hardcoded, is responsible for this bug.init.pp
The text was updated successfully, but these errors were encountered: