Skip to content

Commit dae33db

Browse files
author
Marius Burkard
committed
Merge branch '6366-lower-the-entropy-test-value-in-bind-plugin-to-200' into 'develop'
Resolve "Lower the entropy test value in BIND plugin to 200" Closes #6366 See merge request ispconfig/ispconfig3!1619
2 parents cd84fcc + 821b16a commit dae33db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/plugins-available/bind_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function soa_dnssec_create(&$data) {
9090
if (!file_exists($dns_config['bind_zonefiles_dir'].'/'.$this->zone_file_prefix().$domain)) return false;
9191

9292
//* Check Entropy
93-
if (file_get_contents('/proc/sys/kernel/random/entropy_avail') < 400) {
93+
if (file_get_contents('/proc/sys/kernel/random/entropy_avail') < 200) {
9494
$app->log('DNSSEC ERROR: We are low on entropy. Not generating new Keys for '.$domain.'. Please consider installing package haveged.', LOGLEVEL_WARN);
9595
echo "DNSSEC ERROR: We are low on entropy. Not generating new Keys for $domain. Please consider installing package haveged.\n";
9696
return false;

0 commit comments

Comments
 (0)