import_vault_root_ca/tasks/prerequisites.yml
Bertrand Lanson 891015013b
All checks were successful
test / Linting (push) Successful in 8s
test / Molecule tests (default, debian12) (push) Successful in 40s
test / Molecule tests (default, debian11) (push) Successful in 47s
test / Molecule tests (default, ubuntu2004) (push) Successful in 48s
test / Molecule tests (default, ubuntu2204) (push) Successful in 43s
test / Molecule tests (with_custom_ca, debian11) (push) Successful in 50s
test / Molecule tests (with_custom_ca, debian12) (push) Successful in 51s
test / Molecule tests (with_custom_ca, ubuntu2004) (push) Successful in 47s
test / Molecule tests (with_custom_ca, ubuntu2204) (push) Successful in 53s
remove dependencies auto-install to make role more standard
2023-07-30 13:07:12 +02:00

16 lines
441 B
YAML

---
# task/prerequisites file for import_vault_root_ca
- name: "Install dependencies"
ansible.builtin.include_role:
name: ednxzu.manage_apt_packages
vars:
manage_apt_packages_list: "{{ import_vault_root_ca_packages }}"
- name: "Create directory {{ import_vault_root_ca_cert_dir }}"
ansible.builtin.file:
path: "{{ import_vault_root_ca_cert_dir }}"
state: directory
owner: "root"
group: "root"
mode: '0755'