From 5737c8516d40cec37a1ab9987d7902d845a9330b Mon Sep 17 00:00:00 2001
From: Maarten de Waard <maarten@greenhost.nl>
Date: Thu, 13 Jan 2022 17:38:47 +0100
Subject: [PATCH] fix sed command for outgoing mail

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 122634d19..6d6d0776d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -359,7 +359,7 @@ install-stackspin:
     - sed -i "s/example.org/$FQDN/"  ${CLUSTER_DIR}/.flux.env
     - sed -i "/^\s*#.*$/d; /^\s*$/d" ${CLUSTER_DIR}/.flux.env
     # Disable outgoing mail
-    - sed -i "s/outgoing_mail_enabled=true/outgoing_mail_enabled=false" ${CLUSTER_DIR}/.flux.env
+    - sed -i "s/outgoing_mail_enabled=true/outgoing_mail_enabled=false/" ${CLUSTER_DIR}/.flux.env
     # Deploy secret/stackspin-cluster-variables
     - cp install/kustomization.yaml ${CLUSTER_DIR}
     - kubectl create namespace flux-system
-- 
GitLab