17 lines
265 B
YAML
17 lines
265 B
YAML
|
---
|
||
|
- name: add group cherry
|
||
|
group:
|
||
|
name: cherry
|
||
|
system: yes
|
||
|
state: present
|
||
|
|
||
|
- name: Add the user cherry
|
||
|
user:
|
||
|
name: cherry
|
||
|
system: yes
|
||
|
shell: /bin/false
|
||
|
groups: cherry
|
||
|
create_home: yes
|
||
|
home: /home/cherry
|
||
|
state: present
|