From: Chris Koeritz Date: Sat, 25 Jan 2025 08:26:43 +0000 (-0500) Subject: added bind9-dnsutils as OS package X-Git-Tag: 2.140.189^2~25 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=7ccd4e9da4e8f2a4c9b3fc4962e0a4dd8672e8c6;p=feisty_meow.git added bind9-dnsutils as OS package --- 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[@]}"