Skip to content
Snippets Groups Projects
Commit dae33db1 authored by Marius Burkard's avatar Marius Burkard
Browse files

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
parents cd84fcc6 821b16a4
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ class bind_plugin {
if (!file_exists($dns_config['bind_zonefiles_dir'].'/'.$this->zone_file_prefix().$domain)) return false;
//* Check Entropy
if (file_get_contents('/proc/sys/kernel/random/entropy_avail') < 400) {
if (file_get_contents('/proc/sys/kernel/random/entropy_avail') < 200) {
$app->log('DNSSEC ERROR: We are low on entropy. Not generating new Keys for '.$domain.'. Please consider installing package haveged.', LOGLEVEL_WARN);
echo "DNSSEC ERROR: We are low on entropy. Not generating new Keys for $domain. Please consider installing package haveged.\n";
return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment