From c69bb51830fbfb97ed1e0f8d828fc577e2ac6846 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Fri, 8 Dec 2023 19:55:14 +0100 Subject: [PATCH] feat(testing): remove /etc/hosts tests, fix #3 --- molecule/default/verify.yml | 15 --------------- molecule/default_vagrant/verify.yml | 19 ------------------- molecule/with_custom_config/verify.yml | 15 --------------- .../with_custom_config_vagrant/verify.yml | 19 ------------------- 4 files changed, 68 deletions(-) diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml index 9d7f1fa..1f7d4ef 100644 --- a/molecule/default/verify.yml +++ b/molecule/default/verify.yml @@ -4,21 +4,6 @@ gather_facts: true become: true 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: file /tmp/resolv.conf" block: - name: "Stat file /tmp/resolv.conf" diff --git a/molecule/default_vagrant/verify.yml b/molecule/default_vagrant/verify.yml index 4cc266c..1f7d4ef 100644 --- a/molecule/default_vagrant/verify.yml +++ b/molecule/default_vagrant/verify.yml @@ -4,25 +4,6 @@ gather_facts: true become: true 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" - vars: - etc_hosts_group: - ubuntu: "adm" - debian: "root" - 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 == etc_hosts_group[(ansible_distribution|lower)] - - name: "Test: file /tmp/resolv.conf" block: - name: "Stat file /tmp/resolv.conf" diff --git a/molecule/with_custom_config/verify.yml b/molecule/with_custom_config/verify.yml index 73adfea..bd5e9c4 100644 --- a/molecule/with_custom_config/verify.yml +++ b/molecule/with_custom_config/verify.yml @@ -4,21 +4,6 @@ gather_facts: true become: true 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: file /tmp/resolv.conf" block: - name: "Stat file /tmp/resolv.conf" diff --git a/molecule/with_custom_config_vagrant/verify.yml b/molecule/with_custom_config_vagrant/verify.yml index de615a3..bd5e9c4 100644 --- a/molecule/with_custom_config_vagrant/verify.yml +++ b/molecule/with_custom_config_vagrant/verify.yml @@ -4,25 +4,6 @@ gather_facts: true become: true 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" - vars: - etc_hosts_group: - ubuntu: "adm" - debian: "root" - 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 == etc_hosts_group[(ansible_distribution|lower)] - - name: "Test: file /tmp/resolv.conf" block: - name: "Stat file /tmp/resolv.conf"