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