From 10cdcddf5b2f5a8450f4af3dec500e2617226f82 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Fri, 28 Jun 2019 09:01:12 -0700 Subject: [PATCH] Added default path for Remotely server on Ubuntu. --- Utilities/Remotely_Server_Install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Utilities/Remotely_Server_Install.sh b/Utilities/Remotely_Server_Install.sh index 16e72e9d..d6a1fb3e 100644 --- a/Utilities/Remotely_Server_Install.sh +++ b/Utilities/Remotely_Server_Install.sh @@ -2,6 +2,9 @@ echo "Thanks for trying remotely! If you have any questions, feel free to email me at Translucency_Software@outlook.com." echo read -p "Enter path where the Remotely server will be installed (typically /var/www/remotely): " appRoot +if [ -z "$appRoot" ]; then + appRoot="/var/www/remotely" +fi read -p "Enter server host (e.g. remotely.yourdomainname.com): " serverHost UbuntuVersion=$(lsb_release -r -s)