Marius Burkard
2016-05-04 f6513f0be58f1dd441f3778f8a9d259bbc7267e4
Merge branch 'master' into 'stable-3.1'

Fixes: #3873



See merge request !335
2 files modified
7 ■■■■■ changed files
install/install.php 5 ●●●●● patch | view | raw | blame | history
install/update.php 2 ●●● patch | view | raw | blame | history
install/install.php
@@ -344,12 +344,13 @@
        $conf['services']['dns'] = true;
    }
*/
    //* Configure Bind
    if($conf['bind']['installed']) {
        swriteln('Configuring BIND');
        $inst->configure_bind();
        $conf['services']['dns'] = true;
        if(!$inst->find_installed_apps('haveged')) {
        if(!is_installed('haveged')) {
            swriteln("[INFO] haveged not detected - DNSSEC can fail");
        }
    }
@@ -732,7 +733,7 @@
            swriteln('Configuring BIND');
            $inst->configure_bind();
            $conf['services']['dns'] = true;
            if(!$inst->find_installed_apps('haveged')) {
            if(!is_installed('haveged')) {
                swriteln("[INFO] haveged not detected - DNSSEC can fail");
            }
        }
install/update.php
@@ -378,7 +378,7 @@
        } elseif($conf['bind']['installed'] == true) {
            swriteln('Configuring BIND');
            $inst->configure_bind();
            if(!$inst->find_installed_apps('haveged')) {
            if(!is_installed('haveged')) {
                swriteln("[INFO] haveged not detected - DNSSEC can fail");
            }
        } else {