Bertrand Lanson
880451bcd5
Some checks failed
test / Linting (push) Failing after 29s
test / Molecule tests (default, debian11) (push) Has been skipped
test / Molecule tests (default, debian12) (push) Has been skipped
test / Molecule tests (default, ubuntu2004) (push) Has been skipped
test / Molecule tests (default, ubuntu2204) (push) Has been skipped
test / Molecule tests (with_custom_repo, debian11) (push) Has been skipped
test / Molecule tests (with_custom_repo, debian12) (push) Has been skipped
test / Molecule tests (with_custom_repo, ubuntu2004) (push) Has been skipped
test / Molecule tests (with_custom_repo, ubuntu2204) (push) Has been skipped
17 lines
558 B
YAML
17 lines
558 B
YAML
---
|
|
# task/main file for manage_repositories
|
|
- name: "Load variables"
|
|
ansible.builtin.include_vars:
|
|
file: "{{ ansible_distribution|lower }}.yml"
|
|
|
|
- name: "Import prerequisites.yml"
|
|
ansible.builtin.include_tasks: prerequisites.yml
|
|
|
|
- name: "Import main {{ ansible_distribution|lower }} repositories"
|
|
ansible.builtin.include_tasks: "main_repositories.yml"
|
|
when: manage_repositories_enable_default_repo
|
|
|
|
- name: "Import custom_repositories.yml"
|
|
ansible.builtin.include_tasks: custom_repositories.yml
|
|
when: manage_repositories_enable_custom_repo
|