From e447cd6f94b6fe488995394de65a6a00eec27511 Mon Sep 17 00:00:00 2001
From: Maarten de Waard <maarten@greenhost.nl>
Date: Tue, 3 Dec 2019 15:15:30 +0100
Subject: [PATCH] replace bash with sh

---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 14606aaea..18b1cafae 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -38,7 +38,8 @@ create-vps:
   script:
     - echo "hostname $HOSTNAME, subdomain $SUBDOMAIN, domain $DOMAIN, address $ADDRESS";
     - ls clusters/${HOSTNAME} || echo "directory clusters/${HOSTNAME} not found"
-    - bash .gitlab/ci_scripts/create_vps.sh
+    # Creates the VPS only if an old VPS for this branch is not re-usable
+    - sh .gitlab/ci_scripts/create_vps.sh
   artifacts:
     paths:
     - clusters
-- 
GitLab