From 972ac77bc20b532f770158a7cf8f990012d7338e Mon Sep 17 00:00:00 2001 From: Ben Grande Date: Thu, 2 May 2024 19:33:32 +0200 Subject: [PATCH] fix: install libpci by default on sys-net It is not possible to troubleshoot network module loading without pciutils. Although it is a troubleshooting tools, it is not troubleshooting the network, but to make the system itself be able to load kernel modules and reach the network, therefore necessary. --- salt/sys-net/install-debug.sls | 1 - salt/sys-net/install.sls | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/sys-net/install-debug.sls b/salt/sys-net/install-debug.sls index 2d25d8ca..e689e56e 100644 --- a/salt/sys-net/install-debug.sls +++ b/salt/sys-net/install-debug.sls @@ -16,7 +16,6 @@ include: - install_recommends: False - skip_suggestions: True - pkgs: - - pciutils - net-tools - wireless-tools - socat diff --git a/salt/sys-net/install.sls b/salt/sys-net/install.sls index 42346fc3..85884390 100644 --- a/salt/sys-net/install.sls +++ b/salt/sys-net/install.sls @@ -21,5 +21,6 @@ include: - wpasupplicant - gnome-keyring - notification-daemon + - pciutils {% endif -%}