This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ansible/roles/shell/tasks/users/cherry.yml

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