skip manual cert and key path prompting if using Certbot

This commit is contained in:
Asif Bacchus 2019-01-04 23:25:53 -07:00
parent f0008b1d71
commit c93d5ac9c5

View File

@ -113,6 +113,8 @@ if [ "${useCertbot}" -eq 1 ]; then
done
fi
# only process manual certificate paths if NOT using Certbot
if [ "${useCertbot}" -eq 0 ]; then
# not using Certbot: get location of certificate
while true; do
read -p "What is the path to your primary SSL certificate? " inputCertPath
@ -256,7 +258,7 @@ while true; do
;;
esac
done
fi
# debug section
echo "Local IP4: $IP4"