feat(tests): remove /etc/hosts testing, fix #1
All checks were successful
test / Linting (push) Successful in 41s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m9s
test / Molecule tests (default, debian11) (push) Successful in 1m32s
test / Molecule tests (default, debian12) (push) Successful in 1m27s
test / Molecule tests (with_custom_packages, debian11) (push) Successful in 48s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m2s
test / Molecule tests (with_custom_packages, debian12) (push) Successful in 54s
test / Molecule tests (with_custom_packages, ubuntu2204) (push) Successful in 54s
test / Molecule tests (with_custom_packages, ubuntu2004) (push) Successful in 1m11s

This commit is contained in:
Bertrand Lanson 2023-12-08 18:34:45 +01:00
parent 976b78c537
commit 879f0f11fe
4 changed files with 0 additions and 68 deletions

View File

@ -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, docker"
vars:
wanted_up_to_date_list: ["pip", "docker"]

View File

@ -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, docker"
vars:
wanted_up_to_date_list: ["pip", "docker"]

View File

@ -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, docker"
vars:
wanted_up_to_date_list: ["pip", "docker"]

View File

@ -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, docker"
vars:
wanted_up_to_date_list: ["pip", "docker"]