Bertrand Lanson
f8f0707812
All checks were successful
test / Linting (push) Successful in 54s
test / Molecule tests (default, debian11) (push) Successful in 1m48s
test / Molecule tests (default, debian12) (push) Successful in 1m49s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m59s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m48s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 1m6s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 1m8s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 2m23s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 1m17s
17 lines
319 B
YAML
17 lines
319 B
YAML
---
|
|
- name: Prepare
|
|
hosts: all
|
|
become: true
|
|
tasks:
|
|
- name: "Create group vault"
|
|
ansible.builtin.group:
|
|
name: "vault"
|
|
state: present
|
|
|
|
- name: "Create user vault"
|
|
ansible.builtin.user:
|
|
name: "vault"
|
|
group: "vault"
|
|
shell: /bin/false
|
|
state: present
|