From c3189ce6c7301c3ec17878fd3918f31d0d3cb18a Mon Sep 17 00:00:00 2001 From: Marius Burkard <m.burkard@pixcept.de> Date: Wed, 04 May 2016 07:27:53 -0400 Subject: [PATCH] Merge branch 'stable-3.1' --- install/install.php | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/install/install.php b/install/install.php index 1d0e515..cff2265 100644 --- a/install/install.php +++ b/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"); } } -- Gitblit v1.9.1