From 30bfc7cc9f44cd9b0138ebc2e7400f4e592fbd42 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sat, 21 Oct 2023 19:15:10 +0200 Subject: [PATCH] Add binutils tot he OS check dependencies as we need it to check if the local system is abel to run any of our precompiled FTL binaries Signed-off-by: DL6ER --- automated install/basic-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 054d8eef..019cc3e3 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -302,9 +302,9 @@ package_manager_detect() { # Update package cache update_package_cache || exit 1 # Packages required to perform the os_check (stored as an array) - OS_CHECK_DEPS=(grep dnsutils) + OS_CHECK_DEPS=(grep dnsutils binutils) # Packages required to run this install script (stored as an array) - INSTALLER_DEPS=(git iproute2 dialog ca-certificates binutils) + INSTALLER_DEPS=(git iproute2 dialog ca-certificates) # Packages required to run Pi-hole (stored as an array) PIHOLE_DEPS=(cron curl iputils-ping psmisc sudo unzip idn2 libcap2-bin dns-root-data libcap2 netcat-openbsd procps jq)