2023-05-01 18:21:06 +00:00
|
|
|
---
|
|
|
|
- name: Prepare
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
|
|
|
- name: "Create group nomad"
|
|
|
|
ansible.builtin.group:
|
|
|
|
name: "nomad"
|
|
|
|
state: present
|
2023-12-02 15:48:14 +00:00
|
|
|
become: true
|
2023-05-01 18:21:06 +00:00
|
|
|
|
|
|
|
- name: "Create user nomad"
|
|
|
|
ansible.builtin.user:
|
|
|
|
name: "nomad"
|
|
|
|
group: "nomad"
|
|
|
|
shell: /bin/false
|
|
|
|
state: present
|
2023-12-02 15:48:14 +00:00
|
|
|
become: true
|