Added default path for Remotely server on Ubuntu.

This commit is contained in:
Jared Goodwin 2019-06-28 09:01:12 -07:00
parent b70976034c
commit 10cdcddf5b

View File

@ -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)