Update update_services.sh

This commit is contained in:
Patrick McGuire
2021-10-16 10:34:21 -04:00
committed by GitHub
parent 4ffb12bf53
commit 2779bf51c2
+3 -3
View File
@@ -398,9 +398,9 @@ EOF
install_nomachine() {
if [ ! -d /usr/share/NX ];then
echo "Installing NoMachine"
curl -s -O "${nomachine_url}"
apt install -y ${HOME}/nomachine_7.6.2_3_arm64.deb
rm -f ${HOME}/nomachine_7.6.2_3_arm64.deb
curl -s -o ${HOME}/nomachine.deb -O "${nomachine_url}"
apt install -y ${HOME}/nomachine.deb
rm -f ${HOME}/nomachine.deb
fi
}