diff options
| author | Jason D. McCormick <jason@mfamily.org> | 2022-12-11 13:20:54 -0500 |
|---|---|---|
| committer | Jason D. McCormick <jason@mfamily.org> | 2022-12-11 13:20:54 -0500 |
| commit | 97459518fad82b19059d7e5cd796ead961c38db6 (patch) | |
| tree | 0708732142bfc279005065d65a9974bc95747d6f /he-dns/he-dyndns-bash | |
| parent | cb0e1dd0e84ab16110d1f377ba27872f771fb9af (diff) | |
Diffstat (limited to 'he-dns/he-dyndns-bash')
| -rwxr-xr-x | he-dns/he-dyndns-bash | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/he-dns/he-dyndns-bash b/he-dns/he-dyndns-bash deleted file mode 100755 index 0ce3730..0000000 --- a/he-dns/he-dyndns-bash +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/bash -# -# Copyright (C)2019 by Jason D. McCormick <jason@mfamily.org> -# Licensed under the Apache License 2.0. See LICENSE included -# with the distribution bundle that contained this file. -# - -PATH="/usr/bin:/bin:/usr/sbin:/sbin" - -## KNOWLEDGE IS GOOD ## -usage() { echo "Usage: $0 [-s SECRET] -d HOSTNAME[,HOSTNAME,...]" 1>&2; exit 1; } - -## DO THE UPDATE FUNCTION ONCE FOR HAPPY EDITING ## -doUpdate() { - - if [ ! -z $2 ]; then - myip="&myip=$2" - fi - - /usr/bin/curl -s$1 "https://$FQDN:$CODE@$DNSSITE/nic/update?hostname=$FQDN$myip" > $tfile - if ! egrep -q '(good|nochg)' $tfile; then - echo -n "v$1 change: " - cat $tfile - echo - retval=1 - fi -} - -## MAIN ## -while getopts "46a:A:hd:s:" arg; do - case "${arg}" in - 4) - DO4=Y - ;; - 6) - DO6=Y - ;; - a) - ADDR4=${OPTARG} - ;; - A) - ADDR6=${OPTARG} - ;; - d) - FQDNS=${OPTARG} - ;; - s) - CODE=${OPTARG} - ;; - *) - usage - ;; - esac -done - -if [ -z "${FQDNS}" ]; then - usage -fi - -if [ ! -f /etc/he-dns-secret ] && [ -z "${CODE}" ]; then - usage -fi - -if [ -z "${CODE}" ]; then - . /etc/he-dns-secret - - if [ -z "${CODE}" ]; then - echo "/etc/he-dns-secret does not contain a CODE= variable" - exit 1 - fi -fi - -DNSSITE="dyn.dns.he.net"; -retval=0 -tfile=$(/bin/mktemp) - -for FQDN in $(echo $FQDNS | tr ',' ' ') -do - if [ ! -z ${DO4} ]; then - doUpdate 4 ${ADDR4} - fi - - if [ ! -z ${DO6} ]; then - doUpdate 6 ${ADDR6} - fi -done - -rm $tfile - -exit $retval - |
