From 94d6c0f5239fcd048003acdd310f7bd027b11416 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Tue, 26 Dec 2023 14:37:43 +0100 Subject: [PATCH] update to match bash syntax --- infrastructure/ddns/cronjob.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/ddns/cronjob.yaml b/infrastructure/ddns/cronjob.yaml index b2729a5..b8a13a1 100644 --- a/infrastructure/ddns/cronjob.yaml +++ b/infrastructure/ddns/cronjob.yaml @@ -16,7 +16,7 @@ spec: - -c args: - >- - CURRENT_IP = $(curl -4 ifconfig.me) + CURRENT_IP=$(curl -4 ifconfig.me) && echo "Current IP: $CURRENT_IP" &&