From 7a82217ba450ef4b9933356dc4a9ac83c27f2a57 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Fri, 8 Dec 2023 19:16:17 +0100 Subject: [PATCH] feat(tests): remove /etc/hosts testing, fix #1 --- 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 7723272..f68f1ac 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: directory /etc/netplan" block: - name: "Stat directory /etc/netplan" diff --git a/molecule/default_vagrant/verify.yml b/molecule/default_vagrant/verify.yml index 1184615..f68f1ac 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: directory /etc/netplan" block: - name: "Stat directory /etc/netplan" diff --git a/molecule/with_custom_config/verify.yml b/molecule/with_custom_config/verify.yml index 58ccb97..29a9644 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: directory /tmp" block: - name: "Stat directory /etc/netplan" diff --git a/molecule/with_custom_config_vagrant/verify.yml b/molecule/with_custom_config_vagrant/verify.yml index 7c883fe..29a9644 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: directory /tmp" block: - name: "Stat directory /etc/netplan"