20 lines
536 B
YAML
20 lines
536 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'
|