diff --git a/install/install.php b/install/install.php index 374edd72e95ffaa7db9d70bb17c60225a26634f1..1d0e5157110d03b57590a74cf6fe6bdcf13c39f3 100644 --- a/install/install.php +++ b/install/install.php @@ -140,6 +140,8 @@ include_once 'dist/conf/'.$dist['id'].'.conf.php'; //**************************************************************************************************** $inst = new installer(); if (!$inst->get_php_version()) die('ISPConfig requieres PHP '.$inst->min_php."\n"); +$retval=shell_exec("which which"); +if (empty($retval)) die ("ISPConfig requieres which \n"); swriteln($inst->lng(' Following will be a few questions for primary configuration so be careful.')); swriteln($inst->lng(' Default values are in [brackets] and can be accepted with <ENTER>.')); @@ -347,6 +349,9 @@ if($install_mode == 'standard') { swriteln('Configuring BIND'); $inst->configure_bind(); $conf['services']['dns'] = true; + if(!$inst->find_installed_apps('haveged')) { + swriteln("[INFO] haveged not detected - DNSSEC can fail"); + } } //* Configure MyDNS if($conf['mydns']['installed']) { @@ -727,6 +732,9 @@ if($install_mode == 'standard') { swriteln('Configuring BIND'); $inst->configure_bind(); $conf['services']['dns'] = true; + if(!$inst->find_installed_apps('haveged')) { + swriteln("[INFO] haveged not detected - DNSSEC can fail"); + } } //* Configure MyDNS if($conf['mydns']['installed']) { diff --git a/install/update.php b/install/update.php index 8f818dff8af4e7918bf1c3df6a73e0132a5a1b7a..2dcb53df51e54dc5d3e7289be613332c2167d341 100644 --- a/install/update.php +++ b/install/update.php @@ -378,6 +378,9 @@ if($reconfigure_services_answer == 'yes' || $reconfigure_services_answer == 'sel } elseif($conf['bind']['installed'] == true) { swriteln('Configuring BIND'); $inst->configure_bind(); + if(!$inst->find_installed_apps('haveged')) { + swriteln("[INFO] haveged not detected - DNSSEC can fail"); + } } else { swriteln('Configuring MyDNS'); $inst->configure_mydns();