manage_apt_packages/molecule/default/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

31 lines
852 B
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: package vim"
block:
- name: "Get packages facts"
ansible.builtin.package_facts:
manager: auto
- name: "Verify package vim"
ansible.builtin.assert:
that:
- "'{{ ansible_facts.packages['vim'][0]['name'] }}' == 'vim'"