From 6e45c9e279b2ccf2e505624bc09ae3e426b865ea Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Sat, 9 Dec 2023 10:45:10 +0100 Subject: [PATCH] feat(test): remove /etc/hosts tests, fix #1 --- molecule/default/verify.yml | 15 --------------- molecule/default_vagrant/verify.yml | 19 ------------------- molecule/with_custom_packages/verify.yml | 15 --------------- .../with_custom_packages_vagrant/verify.yml | 19 ------------------- 4 files changed, 68 deletions(-) diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml index 6ce2b2b..4de7918 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: packages ansible-lint" block: - name: "Get pipx installed packages" diff --git a/molecule/default_vagrant/verify.yml b/molecule/default_vagrant/verify.yml index 2f55da6..4de7918 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: packages ansible-lint" block: - name: "Get pipx installed packages" diff --git a/molecule/with_custom_packages/verify.yml b/molecule/with_custom_packages/verify.yml index b473132..4a5dd59 100644 --- a/molecule/with_custom_packages/verify.yml +++ b/molecule/with_custom_packages/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: packages pip, vault-cli, yamllint, ansible-core" block: - name: "Get pipx installed packages" diff --git a/molecule/with_custom_packages_vagrant/verify.yml b/molecule/with_custom_packages_vagrant/verify.yml index 652c310..4a5dd59 100644 --- a/molecule/with_custom_packages_vagrant/verify.yml +++ b/molecule/with_custom_packages_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: packages pip, vault-cli, yamllint, ansible-core" block: - name: "Get pipx installed packages"