From 0beb7da32829bd7aa4816c45209f84831f92370d Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 11 Jul 2022 07:24:44 -0400 Subject: [PATCH] Update pihole-install.sh --- setup/pihole-install.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/setup/pihole-install.sh b/setup/pihole-install.sh index e2ccbb03..0e9b413d 100644 --- a/setup/pihole-install.sh +++ b/setup/pihole-install.sh @@ -55,17 +55,20 @@ msg_ok "Set up Container OS" msg_ok "Network Connected: ${BL}$(hostname -I)" msg_info "Updating Container OS" -apt update &>/dev/null -apt-get -qqy upgrade &>/dev/null +apt-get update &>/dev/null +apt-get -y dist-upgrade &>/dev/null msg_ok "Updated Container OS" msg_info "Installing Dependencies" apt-get install -y curl &>/dev/null apt-get install -y sudo &>/dev/null +apt-get install -y ufw &>/dev/null +apt-get install -y ntp &>/dev/null msg_ok "Installed Dependencies" msg_info "Installing Pi-hole" -curl -sSL https://install.pi-hole.net | bash +wget -O tteck-install.sh https://install.pi-hole.net &>/dev/null +bash tteck-install.sh msg_ok "Installed Pi-hole" PASS=$(grep -w "root" /etc/shadow | cut -b6); @@ -89,5 +92,5 @@ msg_ok "Customized Container" msg_info "Cleaning up" apt-get autoremove >/dev/null apt-get autoclean >/dev/null -rm -rf /var/{cache,log}/* /var/lib/apt/lists/* +rm -rf /var/{cache,log}/* /var/lib/apt/lists/* /root/tteck-install.sh msg_ok "Cleaned"