manage_apt_packages/molecule/with_custom_packages_vagrant/prepare.yml
Bertrand Lanson 2a3e54aa53
All checks were successful
test / Linting (push) Successful in 29s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m3s
test / Molecule tests (default, debian12) (push) Successful in 1m36s
test / Molecule tests (with_custom_packages, debian11) (push) Successful in 1m37s
test / Molecule tests (with_custom_packages, debian12) (push) Successful in 1m31s
test / Molecule tests (with_custom_packages, ubuntu2004) (push) Successful in 1m57s
test / Molecule tests (with_custom_packages, ubuntu2204) (push) Successful in 1m48s
test / Molecule tests (default, debian11) (push) Successful in 56s
test / Molecule tests (default, ubuntu2004) (push) Successful in 50s
feat: add vagrant unit test for later
2023-11-29 19:13:41 +01: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"