Hi,
> > Am Mittwoch, den 26.02.2020, 05:57 -0800 schrieb Dan Crisp: > >> sshdconfig::match_address: "xx.xx.xx.xx" > > Just to clarify: Is "puppet lookup" supposed to find > "sshdconfig::match_address" when only "match_address" was given No! Hiera looks for a string based key, not regex. You must specify the full string when using puppet lookup puppet lookup sshdconfig::match_address —explain … Same is for Puppet Code: $match_address = lookup(’sshdconfig::match_address’) Consider the following: you have 3 classes which use a $port parameter. Which one to take? The one for ssh Class, apache class, postfix class? That is the reason why you must provide a parameter with its namespace (=class name). Hth, Martin -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/E331FDB9-409D-4614-9201-95839A6E3A28%40gmail.com.
