manage_apt_packages/molecule/with_custom_packages/prepare.yml
Bertrand Lanson 1f61057dfb
All checks were successful
test / Linting (push) Successful in 8s
test / Molecule tests (default, debian11) (push) Successful in 36s
test / Molecule tests (default, debian12) (push) Successful in 37s
test / Molecule tests (default, ubuntu2004) (push) Successful in 48s
test / Molecule tests (default, ubuntu2204) (push) Successful in 42s
test / Molecule tests (with_custom_packages, debian11) (push) Successful in 1m14s
test / Molecule tests (with_custom_packages, debian12) (push) Successful in 1m11s
test / Molecule tests (with_custom_packages, ubuntu2004) (push) Successful in 1m33s
test / Molecule tests (with_custom_packages, ubuntu2204) (push) Successful in 1m29s
fix tests
2023-09-14 23:22:53 +02:00

23 lines
694 B
YAML

---
- name: Prepare
hosts: all
tasks:
- name: "Include manage_repositories"
ansible.builtin.include_role:
name: "ednxzu.manage_repositories"
vars:
manage_repositories_enable_default_repo: true
manage_repositories_enable_custom_repo: true
manage_repositories_custom_repo:
- name: hashicorp
uri: "https://apt.releases.hashicorp.com"
comments: "hashicorp repository"
types:
- deb
suites:
- "{{ ansible_distribution_release }}"
components:
- main
options:
Signed-By: "https://apt.releases.hashicorp.com/gpg"