From 829fba343137c5241d7361c0e0e41865da2d0ff7 Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Tue, 27 Apr 2021 18:48:03 -0500 Subject: [PATCH] move network related packages --- roles/2-common/tasks/network.yml | 7 ++++++- roles/2-common/tasks/packages.yml | 2 -- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/roles/2-common/tasks/network.yml b/roles/2-common/tasks/network.yml index b8f42b5ef..3341efaed 100644 --- a/roles/2-common/tasks/network.yml +++ b/roles/2-common/tasks/network.yml @@ -32,9 +32,14 @@ state: present when: not is_raspbian +# used in the network role - name: Install package iptables-persistent (debuntu) package: - name: iptables-persistent + name: + - iproute2 + - iptables-persistent + - hostapd + - netmask state: present when: is_debuntu diff --git a/roles/2-common/tasks/packages.yml b/roles/2-common/tasks/packages.yml index 4d38c665a..7bc0658cc 100644 --- a/roles/2-common/tasks/packages.yml +++ b/roles/2-common/tasks/packages.yml @@ -36,14 +36,12 @@ - curl # Used to install roles/nodejs and roles/nodered #- etckeeper # "nobody is really using etckeeper and it's bloating the filesystem every time apt runs" per @jvonau at https://github.com/iiab/iiab/issues/1146 - gawk - - hostapd - htop - i2c-tools # Low-level bus/chip/register/EEPROM tools e.g. for RTC - logrotate #- lynx # Installed by 1-prep's roles/iiab-admin/tasks/access.yml - make # 2021-04-26: What roles (if any) truly still use this? - mlocate - - netmask - net-tools # 2021-04-26: @jvonau suggests possibly deleting this...unless oldtimers really want these older commands in iiab-diagnostics output? - ntfs-3g # Possibly no longer nec, similar to exfat packages above? #- openssh-server # ssh (Raspbian) or openssh-server (other OS's) already installed by 1-prep's roles/sshd/tasks/main.yml