Applied maxinterval.diff: Increase max interval for updates.
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=129370 http://www.dyndns.com/support/services/dyndns/faq.html#q15 git-svn-id: svn+ssh://svn.code.sf.net/p/ddclient/code/trunk@39 3873ddee-7413-0410-b6c4-c2c57c1ab35a
This commit is contained in:
parent
d978f06204
commit
87a001faac
2 changed files with 8 additions and 1 deletions
|
@ -18,6 +18,13 @@ Changelog
|
|||
update-new-config.patch: Force update if config has changed
|
||||
smc-barricade-7401bra.patch: Support for SMC Barricade 7401BRA FW
|
||||
firewall
|
||||
cisco_fw.diff: Use configured hostname for firewall access
|
||||
with -use=cisco (closes: #345712). Thanks to Per Carlson for the
|
||||
patch! See http://bugs.debian.org/345712.
|
||||
maxinterval.diff: Increase max interval for updates.
|
||||
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=129370
|
||||
http://www.dyndns.com/support/services/dyndns/faq.html#q15
|
||||
|
||||
|
||||
3.7.0
|
||||
- Added vi tag
|
||||
|
|
|
@ -352,7 +352,7 @@ my %variables = (
|
|||
'atime' => setv(T_NUMBER, 0, 1, 0, 0, undef),
|
||||
'status' => setv(T_ANY, 0, 1, 0, '', undef),
|
||||
'min-interval' => setv(T_DELAY, 0, 0, 1, interval('30s'), 0),
|
||||
'max-interval' => setv(T_DELAY, 0, 0, 1, interval('15d'), 0),
|
||||
'max-interval' => setv(T_DELAY, 0, 0, 1, interval('30d'), 0),
|
||||
'min-error-interval' => setv(T_DELAY, 0, 0, 1, interval('5m'), 0),
|
||||
|
||||
'warned-min-interval' => setv(T_ANY, 0, 1, 0, 0, undef),
|
||||
|
|
Loading…
Reference in a new issue