Make --encryption-key mandatory

This commit is contained in:
Johannes
2016-11-13 11:34:02 +01:00
parent ad83d805ac
commit 2398a515b5

View File

@@ -49,6 +49,11 @@ if [[ -z "${provider}" ]]; then
exit 1
fi
if [[ -z "${encryptionKey}" ]]; then
echo "--encryption-key is required"
exit 1
fi
echo ""
echo "##############################################"
echo " Cloudron Setup (${version}) "