diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-01-17 00:31:02 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-01-17 00:31:02 +0000 |
commit | a9b55504e4e932fcf8e184b06ef37688ab9dea14 (patch) | |
tree | 4dcc5fd88b5eed31ede8c0b8c4710b20d93b8c85 /etc | |
parent | 13d9c89fd7d0c1fb533f12d41c7c244a64f9a70c (diff) | |
download | pfsense-a9b55504e4e932fcf8e184b06ef37688ab9dea14.zip pfsense-a9b55504e4e932fcf8e184b06ef37688ab9dea14.tar.gz |
Change DynDNS update freq to 25 days to prevent notice
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/dyndns.class | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/dyndns.class b/etc/inc/dyndns.class index b63071e..4a1c3db 100644 --- a/etc/inc/dyndns.class +++ b/etc/inc/dyndns.class @@ -486,7 +486,7 @@ $error = 'phpDynDNS: (ERROR!) The Dynamic DNS Service provided is not yet supported.'; break; case 10: - $error = 'phpDynDNS: No Change In My IP Address and/or 25 Days Has Not Past. Not Updating Dynamic DNS Entry.'; + $error = 'phpDynDNS: No Change In My IP Address and/or 28 Days Has Not Past. Not Updating Dynamic DNS Entry.'; break; default: $error = "phpDynDNS: (ERROR!) Unknown Response."; @@ -537,7 +537,7 @@ /* use 2419200 for dyndns, dhs, easydns, noip, hn * zoneedit, dyns, ods */ - $time = '2419200'; + $time = '2160000'; $needs_updating = FALSE; /* lets deterimine if the item needs updating */ @@ -548,7 +548,7 @@ $update_reason = "Cached IP: {$cacheIP} WAN IP: {$wan_ip} "; if (($currentTime - $cacheTime) > $time ) { $needs_updating = TRUE; - log_error("DynDns: More than 25 days. Updating."); + log_error("DynDns: More than 28 days. Updating."); } $update_reason .= "{$currentTime} - {$cacheTime} > {$time} "; if ($initial == TRUE) { |