[Puppet Users] Knocking out values

2020-03-07 Thread Helmut Schneider
Hi, using Puppet 5.5 and Hiera 3.4.6: common.yaml: profiles: webserver: apache: server: modules: enable: - mpm_event - status host.yaml: profiles: webserver: apache: server: modules: enable: - header

Re: [Puppet Users] Knocking out values

2020-03-07 Thread Becca Robinson
It looks like it’s working as expected. You did a deep merge, so it is finding all these: common.yaml mpm_event status host.yaml headers include mpm_prefork ssl —mpm_prefork (But this one is excluded to do "knockout_prefix" => "—“,) -- Becca > On Mar 7, 2020, at 10:53 AM, Helmut Schneider

Re: [Puppet Users] Knocking out values

2020-03-07 Thread Becca Robinson
I just ran through some testing and try putting single quotes around your --mpm_event in Hiera. host.yaml: profiles: webserver: apache: server: modules: enable: - headers - include - mpm_prefork - ssl - ‘--mpm_event'