diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-09-10 23:11:17 -0700 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-09-10 23:11:17 -0700 |
commit | 15c89f4d2123bd5c52f6dffbe251ce16b7a17b49 (patch) | |
tree | 585ed852f3b99f566ccfffcebbcf3cacccca6a6a /scripts/dynamic-dns | |
parent | c3ff271bc4212bb307e3735de430cfabd126ef70 (diff) | |
download | vyatta-cfg-system-15c89f4d2123bd5c52f6dffbe251ce16b7a17b49.tar.gz vyatta-cfg-system-15c89f4d2123bd5c52f6dffbe251ce16b7a17b49.zip |
- change forced update wait time from 2 weeks to 4 weeks if no change in IP as per the free service provided by dyndns
Diffstat (limited to 'scripts/dynamic-dns')
-rw-r--r-- | scripts/dynamic-dns/vyatta-dynamic-dns.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dynamic-dns/vyatta-dynamic-dns.pl b/scripts/dynamic-dns/vyatta-dynamic-dns.pl index 89e39626..06bd1ee5 100644 --- a/scripts/dynamic-dns/vyatta-dynamic-dns.pl +++ b/scripts/dynamic-dns/vyatta-dynamic-dns.pl @@ -126,7 +126,7 @@ sub dynamicdns_get_values { my @hostnames = $config->returnValues("host-name"); foreach my $hostname (@hostnames) { $output .= "protocol=$service\n"; - $output .= "max-interval=14d\n"; + $output .= "max-interval=28d\n"; $output .= "login=$login\n"; $output .= "password='$password'\n"; $output .= "$hostname\n\n"; |