diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index a8732dad0..f4d30e55d 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -9,7 +9,7 @@ readonly INSTALLER_SOURCE_DIR="/home/yellowtent/installer" readonly LOG_FILE="/var/log/cloudron-setup.log" domain="" -provider="generic" +provider="" restoreKey="" restoreUrl="" tlsProvider="letsencrypt-prod" @@ -39,6 +39,11 @@ if [[ -z "${domain}" ]]; then exit 1 fi +if [[ -z "${provider}" ]]; then + echo "--provider is required ('generic', 'scaleway', 'ec2')" + exit 1 +fi + echo "" echo "##############################################" echo " Cloudron Setup (${version}) "