manage_netplan/molecule/with_custom_config_vagrant/verify.yml

38 lines
1.3 KiB
YAML
Raw Permalink Normal View History

---
- name: Verify
hosts: all
gather_facts: true
2023-12-03 16:48:46 +00:00
become: true
tasks:
- name: "Test: directory /tmp"
block:
- name: "Stat directory /etc/netplan"
ansible.builtin.stat:
path: "/etc/netplan"
register: stat_etc_netplan
- name: "Stat file /tmp/ansible-config.yaml"
ansible.builtin.stat:
path: "/tmp/ansible-config.yaml"
register: stat_tmp_ansible_config_yml
- name: "Slurp file /tmp/ansible-config.yaml"
ansible.builtin.slurp:
src: "/tmp/ansible-config.yaml"
register: slurp_tmp_ansible_config_yml
- name: "Verify directory /tmp/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_tmp_ansible_config_yml.stat.exists
- stat_tmp_ansible_config_yml.stat.isreg
- stat_tmp_ansible_config_yml.stat.pw_name == 'root'
- stat_tmp_ansible_config_yml.stat.gr_name == 'root'
- stat_tmp_ansible_config_yml.stat.mode == '0644'
- slurp_tmp_ansible_config_yml.content != ''