From a3c658d6b85a34764e69809df496101ee1ce5d58 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 11 Apr 2019 15:41:34 +0200 Subject: [PATCH] Add upcloud provider to cloudron-setup --- scripts/cloudron-setup | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index b0adc2470..012b14f03 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -93,7 +93,7 @@ echo "Running cloudron-setup with args : $@" > "${LOG_FILE}" # validate arguments in the absence of data if [[ -z "${provider}" ]]; then - echo "--provider is required (azure, contabo, digitalocean, ec2, exoscale, gce, hetzner, lightsail, linode, netcup, ovh, rosehosting, scaleway, vultr or generic)" + echo "--provider is required (azure, contabo, digitalocean, ec2, exoscale, galaxygate, gce, hetzner, lightsail, linode, netcup, ovh, rosehosting, scaleway, upcloud, vultr or generic)" exit 1 elif [[ \ "${provider}" != "ami" && \ @@ -117,10 +117,12 @@ elif [[ \ "${provider}" != "ovh" && \ "${provider}" != "rosehosting" && \ "${provider}" != "scaleway" && \ + "${provider}" != "upcloud" && \ + "${provider}" != "upcloud-image" && \ "${provider}" != "vultr" && \ "${provider}" != "generic" \ ]]; then - echo "--provider must be one of: azure, cloudscale.ch, contabo, digitalocean, ec2, exoscale, galaxygate, gce, hetzner, lightsail, linode, netcup, ovh, rosehosting, scaleway, vultr or generic" + echo "--provider must be one of: azure, cloudscale.ch, contabo, digitalocean, ec2, exoscale, galaxygate, gce, hetzner, lightsail, linode, netcup, ovh, rosehosting, scaleway, upcloud, vultr or generic" exit 1 fi