You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
Hello Ansible Community,
I have a task described below, and it works fine if the user account has been managed by Ansible since the moment of the user account creation. However, this task always ends with "changed" status when I try to manage an existing user account on an existing server. Has anyone seen the same issue? Or could it be something local to
my server? The OS is RHEL 6.7, and the Ansible version is 1.9.4.
- name: create user myuser
user:
name: myuser
comment: my test user
home: /home/myuser
uid: 12345
groups: users
password: encrypted_password
update_password: on_create
Thank you, Koji
Jean-Yves LENHOF
unread,
Oct 21, 2015, 5:49:27 AM10/21/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ansible...@googlegroups.com, Koji Tanaka
Hi,
Why did you use groups when you have only one group ?
I think you should use "group" instead of "groups"
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jean-Yves LENHOF, ansible...@googlegroups.com
Thank you so much, Jean-Yves. That's exactly the issue I had. I used
"groups" because the first user account I tried to maintain had
multiple groups to belong to, and I ignorantly copied and pasted it
without caring much about the "s".