manage_apt_packages/molecule/with_custom_packages/verify.yml
Bertrand Lanson 9080afb28d
All checks were successful
test / Linting (push) Successful in 29s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m12s
test / Molecule tests (default, debian12) (push) Successful in 1m28s
test / Molecule tests (default, debian11) (push) Successful in 1m39s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m7s
test / Molecule tests (with_custom_packages, debian11) (push) Successful in 1m19s
test / Molecule tests (with_custom_packages, debian12) (push) Successful in 1m33s
test / Molecule tests (with_custom_packages, ubuntu2004) (push) Successful in 1m24s
test / Molecule tests (with_custom_packages, ubuntu2204) (push) Successful in 1m28s
added gitea actions, debian12 support, moved to ansible for testing
2023-06-30 23:02:13 +02:00

34 lines
1.2 KiB
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: "Test: file /etc/hosts"
block:
- name: "Stat file /etc/hosts"
ansible.builtin.stat:
path: "/etc/hosts"
register: stat_etc_hosts
- name: "Verify file /etc/hosts"
ansible.builtin.assert:
that:
- stat_etc_hosts.stat.exists
- stat_etc_hosts.stat.isreg
- stat_etc_hosts.stat.pw_name == 'root'
- stat_etc_hosts.stat.gr_name == 'root'
- name: "Test: packages mariadb-server, apache2, consul:1.13.1-1"
block:
- name: "Get packages facts"
ansible.builtin.package_facts:
manager: auto
- name: "Verify packages mariadb-server, apache2, consul:1.13.1-1"
ansible.builtin.assert:
that:
- "'{{ ansible_facts.packages['mariadb-server'][0]['name'] }}' == 'mariadb-server'"
- "'{{ ansible_facts.packages['apache2'][0]['name'] }}' == 'apache2'"
- "'{{ ansible_facts.packages['consul'][0]['name'] }}' == 'consul'"
- "'{{ ansible_facts.packages['consul'][0]['version'] }}' == '1.13.1-1'"