From 38016dce730790f1014456951b13a22ea6f0d64f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Wed, 8 Dec 2021 19:19:17 +0000 Subject: ansible-lint: Ignore galaxy and various changed hooks --- .ansible-lint | 2 ++ playbooks/prerequisites.yml | 2 +- roles/vmm/tasks/autoinstall_configuration.yml | 1 + roles/vmm/tasks/network.yml | 4 +++- 4 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .ansible-lint diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..4930268 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,2 @@ +skip_list: + - meta-no-info diff --git a/playbooks/prerequisites.yml b/playbooks/prerequisites.yml index ac4d58d..3178164 100644 --- a/playbooks/prerequisites.yml +++ b/playbooks/prerequisites.yml @@ -1,7 +1,7 @@ - hosts: all gather_facts: false tasks: - - name: bruteforce python installation with all packages possiblity + - name: bruteforce python installation with all packages possiblity # noqa: no-changed-when raw: | ! pkg_add python3 && ! pkg install python3 && diff --git a/roles/vmm/tasks/autoinstall_configuration.yml b/roles/vmm/tasks/autoinstall_configuration.yml index 5d12ee9..1f8cf07 100644 --- a/roles/vmm/tasks/autoinstall_configuration.yml +++ b/roles/vmm/tasks/autoinstall_configuration.yml @@ -48,6 +48,7 @@ dest: "{{ vmm_image_openbsd_kernel_prefix }}.{{ item.name }}" owner: 0 group: 0 + mode: 0600 state: hard force: true when: item.image == "openbsd" diff --git a/roles/vmm/tasks/network.yml b/roles/vmm/tasks/network.yml index b8fc7e1..9886e59 100644 --- a/roles/vmm/tasks/network.yml +++ b/roles/vmm/tasks/network.yml @@ -1,6 +1,8 @@ - name: start ip forwarding command: sysctl net.inet.ip{{ item }}.forwarding=1 loop: "{{ vmm_network_forwarded_ips }}" + register: result + changed_when: item ~ "->" ~ item not in result.stdout_lines - name: enable ip forwarding lineinfile: @@ -23,5 +25,5 @@ mode: 0640 create: true -- name: start network switch +- name: start network switch # noqa: no-changed-when command: "sh /etc/netstart {{ vmm_network_switch.interface }}" -- cgit v1.2.3