Ver Fonte

Update technitiumdns.sh

fix unbound variable 
fixes https://github.com/tteck/Proxmox/issues/1608
tteckster há 1 ano atrás
pai
commit
cf20993b86
1 ficheiros alterados com 5 adições e 5 exclusões
  1. 5 5
      ct/technitiumdns.sh

+ 5 - 5
ct/technitiumdns.sh

@@ -56,13 +56,13 @@ if [[ ! -d /etc/dns ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
 msg_info "Updating ${APP}"
 
 if ! dpkg -s aspnetcore-runtime-7.0 > /dev/null 2>&1; then
-    wget -q https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
-    dpkg -i packages-microsoft-prod.deb
-    apt-get update
-    apt-get install -y aspnetcore-runtime-7.0
+    wget -q https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb
+    dpkg -i packages-microsoft-prod.deb &>/dev/null
+    apt-get update &>/dev/null
+    apt-get install -y aspnetcore-runtime-7.0 &>/dev/null
     rm packages-microsoft-prod.deb
 fi
-$STD bash <(curl -fsSL https://download.technitium.com/dns/install.sh)
+bash <(curl -fsSL https://download.technitium.com/dns/install.sh) &>/dev/null
 msg_ok "Updated Successfully"
 exit
 }