From abd66d652421df2ff500985ce72efe1826bc31e1 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 21 Sep 2017 17:46:32 -0700 Subject: [PATCH] Add cloudscale as a provider --- scripts/cloudron-setup | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index c21b3431c..553fc031f 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -105,11 +105,12 @@ done # validate arguments in the absence of data if [[ -z "${dataJson}" ]]; then if [[ -z "${provider}" ]]; then - echo "--provider is required (azure, digitalocean, ec2, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic)" + echo "--provider is required (azure, cloudscale, digitalocean, ec2, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic)" exit 1 elif [[ \ "${provider}" != "ami" && \ "${provider}" != "azure" && \ + "${provider}" != "cloudscale" && \ "${provider}" != "digitalocean" && \ "${provider}" != "ec2" && \ "${provider}" != "gce" && \ @@ -121,7 +122,7 @@ if [[ -z "${dataJson}" ]]; then "${provider}" != "vultr" && \ "${provider}" != "generic" \ ]]; then - echo "--provider must be one of: azure, digitalocean, ec2, gce, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic" + echo "--provider must be one of: azure, cloudscale, digitalocean, ec2, gce, lightsail, linode, ovh, rosehosting, scaleway, vultr or generic" exit 1 fi