import_vault_root_ca/tasks/prerequisites.yml
Bertrand Lanson ff1de6ded2
All checks were successful
test / Linting (push) Successful in 7s
test / Molecule tests (default, debian11) (push) Successful in 36s
test / Molecule tests (default, debian12) (push) Successful in 41s
test / Molecule tests (default, ubuntu2004) (push) Successful in 40s
test / Molecule tests (default, ubuntu2204) (push) Successful in 50s
test / Molecule tests (with_custom_ca, debian11) (push) Successful in 39s
test / Molecule tests (with_custom_ca, debian12) (push) Successful in 38s
test / Molecule tests (with_custom_ca, ubuntu2004) (push) Successful in 45s
test / Molecule tests (with_custom_ca, ubuntu2204) (push) Successful in 48s
feat(core): change namespace
2024-02-05 22:57:10 +01:00

16 lines
445 B
YAML

---
# task/prerequisites file for import_vault_root_ca
- name: "Install dependencies"
ansible.builtin.include_role:
name: ednz_cloud.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"