I was hunting down the cause to an error message I received when adding a 
user to some groups.

- name: users | create app remote user
>   user:
>     name: "{{ app_remote_user }}"
>     groups: adm, wheel
>     createhome: yes
>
>
 The error message was:

msg: Group  wheel does not exist


This error message was not true in the sense that the target system 
definitely had a wheel group, but I noticed the extra space in the error 
message, so the fix was:

- name: users | create app remote user
>   user:
>     name: "{{ app_remote_user }}"
>     groups: adm,wheel
>     createhome: yes
>
>  

My question: Is this a bug in Ansible's interpretation of the groups 
parameter value?

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/f2ecb455-7ca8-4e5e-b5af-a832c49868cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to