manage_netplan/molecule/default/verify.yml
Bertrand Lanson 4e169db69e
Some checks failed
test / Linting (push) Successful in 17s
test / Molecule tests (default, debian11) (push) Successful in 1m23s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m24s
test / Molecule tests (default, debian12) (push) Successful in 1m29s
test / Molecule tests (with_custom_config, debian12) (push) Failing after 53s
test / Molecule tests (with_custom_config, debian11) (push) Failing after 1m9s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m15s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Failing after 1m7s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Failing after 1m16s
add debian 12 support, gitea actions, and linting
2023-07-08 22:59:36 +02:00

52 lines
1.9 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: directory /etc/netplan"
block:
- name: "Stat directory /etc/netplan"
ansible.builtin.stat:
path: "/etc/netplan"
register: stat_etc_netplan
- name: "Stat file /etc/netplan/ansible-config.yaml"
ansible.builtin.stat:
path: "/etc/netplan/ansible-config.yaml"
register: stat_etc_netplan_ansible_config_yml
- name: "Slurp file /etc/netplan/ansible-config.yaml"
ansible.builtin.slurp:
src: "/etc/netplan/ansible-config.yaml"
register: slurp_etc_netplan_ansible_config_yml
- name: "Verify directory /etc/netplan"
ansible.builtin.assert:
that:
- stat_etc_netplan.stat.exists
- stat_etc_netplan.stat.isdir
- stat_etc_netplan.stat.pw_name == 'root'
- stat_etc_netplan.stat.gr_name == 'root'
- stat_etc_netplan.stat.mode == '0755'
- stat_etc_netplan_ansible_config_yml.stat.exists
- stat_etc_netplan_ansible_config_yml.stat.isreg
- stat_etc_netplan_ansible_config_yml.stat.pw_name == 'root'
- stat_etc_netplan_ansible_config_yml.stat.gr_name == 'root'
- stat_etc_netplan_ansible_config_yml.stat.mode == '0644'
- slurp_etc_netplan_ansible_config_yml.content != ''