diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index 550801b7e..d8ba7a3c4 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -105,12 +105,12 @@ done # validate arguments in the absence of data if [[ -z "${dataJson}" ]]; then if [[ -z "${provider}" ]]; then - echo "--provider is required (azure, cloudscale, digitalocean, ec2, exoscale, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic)" + echo "--provider is required (azure, cloudscale.ch, digitalocean, ec2, exoscale, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic)" exit 1 elif [[ \ "${provider}" != "ami" && \ "${provider}" != "azure" && \ - "${provider}" != "cloudscale" && \ + "${provider}" != "cloudscale.ch" && \ "${provider}" != "digitalocean" && \ "${provider}" != "ec2" && \ "${provider}" != "exoscale" && \ @@ -123,7 +123,7 @@ if [[ -z "${dataJson}" ]]; then "${provider}" != "vultr" && \ "${provider}" != "generic" \ ]]; then - echo "--provider must be one of: azure, cloudscale, digitalocean, ec2, exoscale, gce, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic" + echo "--provider must be one of: azure, cloudscale.ch, digitalocean, ec2, exoscale, gce, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic" exit 1 fi