Changeset 927
- Timestamp:
- 08/21/25 16:31:01 (15 hours ago)
- Location:
- branches/secondaryzones
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/secondaryzones/DNSDB.pm
r926 r927 217 217 bind_export_autoexpire_ttl => 15, 218 218 219 # Secondary zones 220 tiny_secondary_method => 'autoaxfr', 221 # For type autoaxfr 222 autoaxfr_root => '/var/lib/dns/autoaxfr', 223 219 224 # Session params 220 225 timeout => '1h', # passed as-is to CGI::Session … … 2225 2230 $cfg->{bind_export_fqdn} = $1 if /^bind_export_fqdn\s*=\s*([a-z01]+)/i; 2226 2231 $cfg->{bind_export_autoexpire_ttl} = $1 if /^bind_export_autoexpire_ttl\s*=\s*(\d+)/; 2232 $cfg->{tiny_secondary_method} = $1 if /^tiny_secondary_method\s*=\s*([a-z]+)/i; 2233 $cfg->{autoaxfr_root} = $1 if m{^autoaxfr_root\s*=\s*([a-z0-9/_.%-]+)}i; 2227 2234 $cfg->{force_refresh} = $1 if /^force_refresh\s*=\s*([a-z01]+)/i; 2228 2235 $cfg->{lowercase} = $1 if /^lowercase\s*=\s*([a-z01]+)/i; -
branches/secondaryzones/dnsdb.conf
r901 r927 42 42 #bind_export_autoexpire_ttl = 15 43 43 44 ## Secondary zone options 45 #tiny_secondary_method = autoaxfr 46 #autoaxfr_root = /var/lib/dns/autoaxfr 47 44 48 ## DNS data template options 45 49 # publish .0 IP when expanding a template pattern
Note:
See TracChangeset
for help on using the changeset viewer.