deploy_adguard/tasks/prerequisites.yml
Bertrand Lanson 0b0fc6673e
All checks were successful
test / Linting (push) Successful in 39s
test / Molecule tests (default, debian12) (push) Successful in 58s
test / Molecule tests (default, debian11) (push) Successful in 1m22s
test / Molecule tests (default, ubuntu2004) (push) Successful in 59s
test / Molecule tests (default, ubuntu2204) (push) Successful in 58s
test / Molecule tests (with_extra_sidecars, debian11) (push) Successful in 53s
test / Molecule tests (with_extra_sidecars, debian12) (push) Successful in 1m6s
test / Molecule tests (with_extra_sidecars, ubuntu2004) (push) Successful in 39s
test / Molecule tests (with_extra_sidecars, ubuntu2204) (push) Successful in 33s
feat: emove become from role
2023-12-03 16:51:47 +01:00

26 lines
587 B
YAML

---
# task/prerequisites file for deploy_adguard
- name: "Create adguard directory"
ansible.builtin.file:
path: "{{ deploy_adguard_directory }}"
state: directory
owner: root
group: root
mode: '0755'
- name: "Create adguard/conf directory"
ansible.builtin.file:
path: "{{ deploy_adguard_directory }}/conf"
state: directory
owner: root
group: root
mode: '0755'
- name: "Create adguard/data directory"
ansible.builtin.file:
path: "{{ deploy_adguard_directory }}/data"
state: directory
owner: root
group: root
mode: '0755'