Update linupx-scripts.sh

This commit is contained in:
2023-03-20 22:10:29 -05:00
parent 528b0e6b0a
commit 3545f8dd1a

View File

@@ -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}"