From ed9383d394357692c992b71d91b1ef28a423dc5e Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 27 Jul 2021 14:56:20 -0400 Subject: [PATCH] 2-common/tasks/network.yml: Cleanup & network packages context --- roles/2-common/tasks/network.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/roles/2-common/tasks/network.yml b/roles/2-common/tasks/network.yml index dc71f4a13..9765f4b1a 100644 --- a/roles/2-common/tasks/network.yml +++ b/roles/2-common/tasks/network.yml @@ -1,11 +1,16 @@ +- name: '2021-07-27: SEE ALSO ~3 networking packages EARLIER installed by https://github.com/iiab/iiab/blob/master/roles/1-prep/tasks/raspberry_pi.yml' + meta: noop + +- name: '2021-07-27: SEE ALSO ~3 networking packages EARLIER installed by https://github.com/iiab/iiab/blob/master/roles/2-common/tasks/packages.yml' + meta: noop + - name: Install package networkd-dispatcher (OS's other than RaspiOS) package: name: networkd-dispatcher state: present when: not is_raspbian -# used in the network role -- name: 'Install network packages: hostapd, iproute2, iptables-persistent, netmask (debuntu)' +- name: 'Install network packages: hostapd, iproute2, iptables-persistent, netmask (debuntu) -- later used by https://github.com/iiab/iiab/tree/master/roles/network' package: name: - iproute2 @@ -13,11 +18,9 @@ - hostapd - netmask state: present - when: is_debuntu - name: Install /etc/network/if-pre-up.d/iptables from template (0755, debuntu) template: src: iptables dest: /etc/network/if-pre-up.d/iptables mode: '0755' - when: is_debuntu