mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update user_commands playbook with supplementary group examples
This commit is contained in:
parent
416eb36b9a
commit
4ed971574f
1 changed files with 17 additions and 2 deletions
|
@ -13,11 +13,26 @@
|
|||
|
||||
# Walk through account creation, modification, and deletion
|
||||
- name: test basic user account creation
|
||||
action: user name=tset comment=TsetUser group=100 shell=/sbin/nologin createhome=no
|
||||
action: user name=tset comment=TsetUser group=users shell=/sbin/nologin createhome=no
|
||||
|
||||
# the following is just a simple example of how you don't have to include
|
||||
# the 'name' element for each task
|
||||
|
||||
- action: user name=tset comment=NyetUser
|
||||
- action: user name=tset password=$password
|
||||
- action: user name=tset password=$password supplementary
|
||||
|
||||
# The following will add the user to supplementary groups.
|
||||
|
||||
# Add the user to the groups dialout and uucp.
|
||||
- action: user name=tset groups=dialout,uucp
|
||||
|
||||
# Add the user to the groups dialout and wheel,
|
||||
# This will remove tset from the group uucp.
|
||||
- action: user name=tset groups=dialout,wheel
|
||||
|
||||
# Add the user to the group uucp. Because append=yes, the user
|
||||
# will not be removed from the groups dialout and wheel.
|
||||
- action: user name=tset groups=uucp append=yes
|
||||
|
||||
# Finally, remove the user.
|
||||
- action: user name=tset state=absent
|
||||
|
|
Loading…
Reference in a new issue