From 159b3dbcd74b671115c1c508ea18e568c6409e5f Mon Sep 17 00:00:00 2001 From: The_Spider Date: Mon, 31 Aug 2020 09:02:33 -0500 Subject: [PATCH] escape \n --- build-deluge.jenkins | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build-deluge.jenkins b/build-deluge.jenkins index 39d847d..de16300 100644 --- a/build-deluge.jenkins +++ b/build-deluge.jenkins @@ -48,35 +48,35 @@ spec: #! /usr/bin/env bash curl --silent --fail --insecure http://localhost:8112 > /dev/null if [[ "\${?}" != "0" ]]; then - printf '%s\n' "Deluge not running." + printf '%s\\n' "Deluge not running." exit 100 fi if [[ -z "\${DDNS_HOST}" ]] || [[ "\${DDNS_HOST}" == "" ]]; then - printf '%s\n' "Dynamic DNS host is not set." + printf '%s\\n' "Dynamic DNS host is not set." exit 100 fi DIP=\$(dig @ns1.google.com TXT o-o.myaddr.l.google.com +short | sed -e 's/"//g') if [[ -z "\${DIP+x}" ]] || [[ "\${DIP}" == "" ]]; then - printf '%s\n' "Unable to detect real-world IP." + printf '%s\\n' "Unable to detect real-world IP." exit 100 fi KIP=\$(dig \${DDNS_HOST} +short) if [[ -z "\${KIP+x}" ]] || [[ "\${KIP}" == "" ]]; then - printf '%s\n' "Unable to get known IP." + printf '%s\\n' "Unable to get known IP." exit 100 fi if [[ "\${DIP}" == "\${KIP}" ]]; then - printf '%s\n' "VPN is not functional." + printf '%s\\n' "VPN is not functional." exit 100 fi ping -c 2 google.com > /dev/null if [[ "\${?}" != "0" ]]; then - printf '%s\n' "No internet connectivity." + printf '%s\\n' "No internet connectivity." exit 100 fi """