Skip to content

Commit 3fa4439

Browse files
author
Florian Schaal
committed
FS#3526 - Add option to disable BIND zone check (the intention for the feature request was more to hide log-messages and not to disable the named-checkzone-call)
1 parent ab8fe4d commit 3fa4439

27 files changed

+39
-3
lines changed

install/tpl/server.ini.master

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ bind_group=bind
115115
bind_zonefiles_dir=/etc/bind
116116
named_conf_path=/etc/bind/named.conf
117117
named_conf_local_path=/etc/bind/named.conf.local
118+
disable_bind_log=n
118119

119120
[fastcgi]
120121
fastcgi_starter_path=/var/www/php-fcgi-scripts/[system_user]/

interface/web/admin/form/server_config.tform.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1204,6 +1204,12 @@
12041204
'width' => '40',
12051205
'maxlength' => '255'
12061206
),
1207+
'disable_bind_log' => array (
1208+
'datatype' => 'VARCHAR',
1209+
'formtype' => 'CHECKBOX',
1210+
'default' => 'n',
1211+
'value' => array(0 => 'n', 1 => 'y')
1212+
),
12071213
//#################################
12081214
// ENDE Datatable fields
12091215
//#################################

interface/web/admin/lib/lang/ar_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,5 @@ $wb['cron_init_script_error_regex'] = 'Invalid cron init script.';
254254
$wb['crontab_dir_error_regex'] = 'Invalid crontab directory.';
255255
$wb['cron_wget_error_regex'] = 'Invalid cron wget path.';
256256
$wb['network_filesystem_txt'] = 'Network Filesystem';
257+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
257258
?>

interface/web/admin/lib/lang/bg_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,5 @@ $wb['cron_init_script_error_regex'] = 'Invalid cron init script.';
254254
$wb['crontab_dir_error_regex'] = 'Invalid crontab directory.';
255255
$wb['cron_wget_error_regex'] = 'Invalid cron wget path.';
256256
$wb['network_filesystem_txt'] = 'Network Filesystem';
257+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
257258
?>

interface/web/admin/lib/lang/br_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,5 @@ $wb['cron_init_script_error_regex'] = 'Invalid cron init script.';
254254
$wb['crontab_dir_error_regex'] = 'Invalid crontab directory.';
255255
$wb['cron_wget_error_regex'] = 'Invalid cron wget path.';
256256
$wb['network_filesystem_txt'] = 'Network Filesystem';
257+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
257258
?>

interface/web/admin/lib/lang/cz_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,5 +252,6 @@ $wb['cron_init_script_error_regex'] = 'Invalid cron init script.';
252252
$wb['crontab_dir_error_regex'] = 'Invalid crontab directory.';
253253
$wb['cron_wget_error_regex'] = 'Invalid cron wget path.';
254254
$wb['network_filesystem_txt'] = 'Network Filesystem';
255+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
255256
?>
256257

interface/web/admin/lib/lang/de_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,4 +265,5 @@ $wb['php_ini_check_minutes_error_empty'] = 'Bitte geben Sie einen Wert an, wie o
265265
$wb['php_ini_check_minutes_info_txt'] = '0 = keine Prüfung';
266266
$wb['php_handler_txt'] = 'Standard-PHP-Handler';
267267
$wb['enable_spdy_txt'] = 'Stellt SPDY zur Verfügung';
268+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
268269
?>

interface/web/admin/lib/lang/el_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,5 @@ $wb['cron_init_script_error_regex'] = 'Invalid cron init script.';
249249
$wb['crontab_dir_error_regex'] = 'Invalid crontab directory.';
250250
$wb['cron_wget_error_regex'] = 'Invalid cron wget path.';
251251
$wb['network_filesystem_txt'] = 'Network Filesystem';
252+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
252253
?>

interface/web/admin/lib/lang/en_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,4 +280,5 @@ $wb['xmpp_port_http_txt'] = 'HTTP';
280280
$wb['xmpp_port_https_txt'] = 'HTTPS';
281281
$wb['xmpp_port_pastebin_txt'] = 'Pastebin';
282282
$wb['xmpp_port_bosh_txt'] = 'BOSH';
283+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
283284
?>

interface/web/admin/lib/lang/es_server_config.lng

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,5 @@ $wb['cron_init_script_error_regex'] = 'Invalid cron init script.';
252252
$wb['crontab_dir_error_regex'] = 'Invalid crontab directory.';
253253
$wb['cron_wget_error_regex'] = 'Invalid cron wget path.';
254254
$wb['network_filesystem_txt'] = 'Network Filesystem';
255+
$wb["disable_bind_log_txt"] = "Disable bind9 messages for Loglevel WARN";
255256
?>

0 commit comments

Comments
 (0)