2023-07-08 20:59:36 +00:00
|
|
|
---
|
|
|
|
- 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 /tmp"
|
|
|
|
block:
|
2023-07-08 23:05:25 +00:00
|
|
|
- name: "Stat directory /etc/netplan"
|
2023-07-08 20:59:36 +00:00
|
|
|
ansible.builtin.stat:
|
2023-07-08 23:05:25 +00:00
|
|
|
path: "/etc/netplan"
|
|
|
|
register: stat_etc_netplan
|
2023-07-08 20:59:36 +00:00
|
|
|
|
|
|
|
- name: "Stat file /tmp/ansible-config.yaml"
|
|
|
|
ansible.builtin.stat:
|
2023-07-08 23:05:25 +00:00
|
|
|
path: "/tmp/ansible-config.yaml"
|
2023-07-08 20:59:36 +00:00
|
|
|
register: stat_tmp_ansible_config_yml
|
|
|
|
|
|
|
|
- name: "Slurp file /tmp/ansible-config.yaml"
|
|
|
|
ansible.builtin.slurp:
|
2023-07-08 23:05:25 +00:00
|
|
|
src: "/tmp/ansible-config.yaml"
|
2023-07-08 20:59:36 +00:00
|
|
|
register: slurp_tmp_ansible_config_yml
|
|
|
|
|
|
|
|
- name: "Verify directory /tmp/netplan"
|
|
|
|
ansible.builtin.assert:
|
|
|
|
that:
|
2023-07-08 23:05:25 +00:00
|
|
|
- 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'
|
2023-07-08 20:59:36 +00:00
|
|
|
- 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 != ''
|