Hello,
>
> Is it possible to specify multiple attribute values from command line like 
> below:
>
> # puppet resource user root groups='root,adm'
> Error: Could not run: Parameter groups failed on User[root]: Group names 
> must be provided as an array, not a comma-separated list.
>
>
>
Hey Pawel,

One way to do this from the command line would be using `puppet apply` 
instead of `puppet resource`, like so:

`puppet apply -e "user { 'root': groups => ['root', 'adm'] }"`

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/423cdc1d-f36a-4afc-99fe-61ca8609ef6a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to