Skip to content

Commit c5e0954

Browse files
committed
Temporarily disabled the automatic activation of the bind-dlz plugin until a routine is integrated in the installer to detect if bind has dlz compiled in or the normal file based plugin has to be used.
1 parent e253202 commit c5e0954

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

server/plugins-available/bind_dlz_plugin.inc.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ function onInstall()
7777
global $conf;
7878

7979
if(isset($conf['bind']['installed']) && $conf['bind']['installed'] == true) {
80-
return true;
80+
// Temporary disabled until the installer supports the automatic creatin of the nescessary
81+
// database or at least to select between filebased nd db based bind, as not all bind versions
82+
// support dlz out of the box. To enable this plugin manually, create a symlink from the plugins-enabled
83+
// directory to this file in the plugins-available directory.
84+
return false;
85+
//return true;
8186
} else {
8287
return false;
8388
}

0 commit comments

Comments
 (0)