I have a class like this in `lumberjack_conf/manifests/init/pp`:
class lumberjack_conf($params= ['"s/thst/hsth/var/log/files"']) {
..
}
which I can run with
`puppet apply lumberjack_conf/tests/init.pp`
What I'd like is to pass params on the command like .. sth like:
`puppet apply lumberjack_conf/tests/init.pp PARAM1`
How do you pass params on the command line (or perhaps puppet dashboard?)
↧