From 7ccd4e9da4e8f2a4c9b3fc4962e0a4dd8672e8c6 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 25 Jan 2025 03:26:43 -0500 Subject: [PATCH] added bind9-dnsutils as OS package --- scripts/core/prep_feisty_host.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/core/prep_feisty_host.sh b/scripts/core/prep_feisty_host.sh index 6938efae..8ef1e156 100644 --- a/scripts/core/prep_feisty_host.sh +++ b/scripts/core/prep_feisty_host.sh @@ -196,13 +196,16 @@ PAX=(noop) PHASE_MESSAGE="installing crucial OS packages" if [ "$opsystem_here" == "debianesque" ]; then - PAX=(gparted openssh-server ) + PAX=(bind9-dnsutils gparted openssh-server ) elif [ "$opsystem_here" == "redhatty" ]; then - PAX=(gparted openssh-server ) + PAX=(bind9-dnsutils gparted openssh-server ) +#untested: bind9-dnsutils elif [ "$opsystem_here" == "macos" ]; then - PAX=(openssh-server ) + PAX=(bind9-dnsutils openssh-server ) +#untested: bind9-dnsutils elif [ "$opsystem_here" == "windoze" ]; then - PAX=(gparted openssh-server ) + PAX=(bind9-dnsutils gparted openssh-server ) +#untested: bind9-dnsutils fi install_system_package "${PAX[@]}" -- 2.34.1