diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2013-10-08 10:37:57 -0300 |
---|---|---|
committer | Marcello Coutinho <marcellocoutinho@gmail.com> | 2013-10-08 10:37:57 -0300 |
commit | 18533369a719d2956600d1b46408357372816afc (patch) | |
tree | e42fde8201876d8b2ea55b4d20affcaf89f9e4f8 /config/bind/bind.inc | |
parent | f9ac72222104375f776457222505995f9c663bc3 (diff) | |
download | pfsense-packages-18533369a719d2956600d1b46408357372816afc.tar.gz pfsense-packages-18533369a719d2956600d1b46408357372816afc.tar.bz2 pfsense-packages-18533369a719d2956600d1b46408357372816afc.zip |
bind - Fix typos
Thanks to phil-davis
Diffstat (limited to 'config/bind/bind.inc')
-rw-r--r-- | config/bind/bind.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config/bind/bind.inc b/config/bind/bind.inc index 65d3c4f7..9d436e4e 100644 --- a/config/bind/bind.inc +++ b/config/bind/bind.inc @@ -45,8 +45,8 @@ function bind_sync(){ $bind = $config["installedpackages"]["bind"]["config"][0]; $bind_enable = $bind['enable_bind']; $bind_forwarder = $bind['bind_forwarder']; - $forwader_ips = $bind['bind_forwader_ips']; - $ram_limite = $bind['bind_ram_limite']; + $forwarder_ips = $bind['bind_forwarder_ips']; + $ram_limit = $bind['bind_ram_limit']; $hide_version = $bind['bind_hide_version']; $bind_notify = $bind['bind_notify']; $custom_options = base64_decode($bind['bind_custom_options']); @@ -62,7 +62,7 @@ $bind_conf .= <<<EOD pid-file "/var/run/named/pid"; statistics-file "/var/log/named.stats"; - max-cache-size $ram_limite;\n + max-cache-size $ram_limit;\n EOD; //check ips to listen on @@ -97,7 +97,7 @@ EOD; #forwarder config if ($bind_forwarder == on) - $bind_conf .="\t\tforwarders { $forwader_ips };\n"; + $bind_conf .="\t\tforwarders { $forwarder_ips };\n"; if ($bind_notify == on) $bind_conf .="\t\tnotify yes;\n"; if ($hide_version == on) @@ -188,7 +188,7 @@ EOD; $zonename = $zone['name']; $zonetype = $zone['type']; $zoneview = $zone['view']; - $zonecuston = $zone['custon']; + $zonecustom = $zone['custom']; $zoneipslave = $zone['slaveip']; $zonereverso = $zone['reverso']; if($zone['allowupdate'] == '') @@ -221,8 +221,8 @@ EOD; $bind_conf .= "\t\tallow-query { $zoneallowquery;};\n"; if ($zonetype != "slave") $bind_conf .= "\t\tallow-transfer { $zoneallowtransfer;};\n"; - if ($zonecuston != '') - $bind_conf .= "\t\t$zonecuston\n"; + if ($zonecustom != '') + $bind_conf .= "\t\t$zonecustom\n"; $bind_conf .= "\t};\n\n"; if (!(file_exists("/etc/namedb/$zonetype"))) { |