Revision: 8133
http://sourceforge.net/p/astlinux/code/8133
Author: abelbeck
Date: 2017-01-29 16:18:04 +0000 (Sun, 29 Jan 2017)
Log Message:
-----------
ddclient, add more descriptive warning messages for Hurricane Electric
Added Paths:
-----------
branches/1.0/package/ddclient/ddclient-upstream-HE-warning-messages.patch
Added: branches/1.0/package/ddclient/ddclient-upstream-HE-warning-messages.patch
===================================================================
--- branches/1.0/package/ddclient/ddclient-upstream-HE-warning-messages.patch (rev 0)
+++ branches/1.0/package/ddclient/ddclient-upstream-HE-warning-messages.patch 2017-01-29 16:18:04 UTC (rev 8133)
@@ -0,0 +1,31 @@
+diff --git a/ddclient b/ddclient
+index 2b7599a..7e1eb89 100755
+--- a/ddclient
++++ b/ddclient
+@@ -4580,7 +4580,7 @@ sub nic_he_update {
+ 'interval' => 'The update interval has been exceeded, wait and try again later',
+ 'noipv4' => 'No DNS "A" record exists, add one and make it dynamic',
+ 'noipv6' => 'No DNS "AAAA" record exists, add one and make it dynamic',
+- 'nochg' => 'No update required; unnecessary attempts to change to the current address are considered abusive',
++ 'nochg' => 'Unnecessary update attempts are considered abusive',
+ );
+
+ ## update each set of hosts that had similar configurations
+@@ -4624,7 +4624,7 @@ sub nic_he_update {
+
+ } elsif (exists $errors{$status}) {
+ if (($status eq 'nochg') || ($status eq 'interval')) {
+- warning("updating %s: %s: %s", $host, $status, $errors{$status});
++ warning("updating %s: No DNS 'A' record update required; %s", $host, $errors{$status});
+ $config{$host}{'ip'} = $ip;
+ $config{$host}{'mtime'} = $now;
+ $config{$host}{'status'} = 'good';
+@@ -4669,7 +4669,7 @@ sub nic_he_update {
+
+ } elsif (exists $errors{$status}) {
+ if (($status eq 'nochg') || ($status eq 'interval')) {
+- warning("updating %s: %s: %s", $host, $status, $errors{$status});
++ warning("updating %s: No DNS 'AAAA' record update required; %s", $host, $errors{$status});
+ $config{$host}{'ipv6'} = $ipv6;
+ $config{$host}{'mtime'} = $now;
+ $config{$host}{'status'} = 'good';
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|