escape \n

This commit is contained in:
Hyatt 2020-08-31 09:02:33 -05:00
parent 70efb15c2d
commit 159b3dbcd7
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -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
"""