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