Skip to content

Commit 57e9825

Browse files
author
Florian Schaal
committed
Fixes: #3873
1 parent 08f1113 commit 57e9825

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

install/install.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,12 +344,13 @@
344344
$conf['services']['dns'] = true;
345345
}
346346
*/
347+
347348
//* Configure Bind
348349
if($conf['bind']['installed']) {
349350
swriteln('Configuring BIND');
350351
$inst->configure_bind();
351352
$conf['services']['dns'] = true;
352-
if(!$inst->find_installed_apps('haveged')) {
353+
if(!is_installed('haveged')) {
353354
swriteln("[INFO] haveged not detected - DNSSEC can fail");
354355
}
355356
}
@@ -732,7 +733,7 @@
732733
swriteln('Configuring BIND');
733734
$inst->configure_bind();
734735
$conf['services']['dns'] = true;
735-
if(!$inst->find_installed_apps('haveged')) {
736+
if(!is_installed('haveged')) {
736737
swriteln("[INFO] haveged not detected - DNSSEC can fail");
737738
}
738739
}

install/update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
} elseif($conf['bind']['installed'] == true) {
379379
swriteln('Configuring BIND');
380380
$inst->configure_bind();
381-
if(!$inst->find_installed_apps('haveged')) {
381+
if(!is_installed('haveged')) {
382382
swriteln("[INFO] haveged not detected - DNSSEC can fail");
383383
}
384384
} else {

0 commit comments

Comments
 (0)