From 3545f8dd1ad6acf6ea356f86bae520261fac56ec Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 20 Mar 2023 22:10:29 -0500 Subject: [PATCH] Update linupx-scripts.sh --- linupx-scripts.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/linupx-scripts.sh b/linupx-scripts.sh index b773815..a644113 100755 --- a/linupx-scripts.sh +++ b/linupx-scripts.sh @@ -486,7 +486,10 @@ URBACKUP_INSTALL() { echo "" read -p "Enter Auth Key:" authkey - TF=`mktemp` && wget "http://urbackup.scity.us:55414/x?a=download_client&lang=en&clientid=${clientid}&authkey=${authkey}&os=linux" -O $TF && sudo sh $TF; rm -f $TF + TF=`mktemp` + wget "http://urbackup.scity.us:55414/x?a=download_client&lang=en&clientid=${clientid}&authkey=${authkey}&os=linux" -O $TF + (printf '%s\n'; sleep 1) | sudo sh $TF + rm -f $TF echo "" echo -e "${Green}UrBackup Client has been Installed${Color_Off}"