mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-03-17 02:00:19 +00:00
17 lines
285 B
YAML
17 lines
285 B
YAML
|
|
---
|
||
|
|
- name: add group minecraft
|
||
|
|
group:
|
||
|
|
name: minecraft
|
||
|
|
system: yes
|
||
|
|
state: present
|
||
|
|
|
||
|
|
- name: Add the user minecraft
|
||
|
|
user:
|
||
|
|
name: minecraft
|
||
|
|
system: yes
|
||
|
|
shell: /bin/false
|
||
|
|
groups: minecraft
|
||
|
|
create_home: yes
|
||
|
|
home: /var/lib/minecraft
|
||
|
|
state: present
|