From fa72a9205f93016edec98bb26d94d2b0a59d476c Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 18 Dec 2017 19:19:09 +0100 Subject: [PATCH] firewall/advanced settings, ditch filterdns for https://github.com/opnsense/core/issues/1971 --- src/www/system_advanced_firewall.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/www/system_advanced_firewall.php b/src/www/system_advanced_firewall.php index 25cac9d8f..d2a28888a 100644 --- a/src/www/system_advanced_firewall.php +++ b/src/www/system_advanced_firewall.php @@ -73,7 +73,6 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { $pconfig['bypassstaticroutes'] = isset($config['filter']['bypassstaticroutes']); } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') { $pconfig = $_POST; - $old_aliasesresolveinterval = $config['system']['aliasesresolveinterval']; $input_errors = array(); /* input validation */ @@ -227,11 +226,6 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { write_config(); - // Kill filterdns when value changes, filter_configure() will restart it - if ($old_aliasesresolveinterval != $config['system']['aliasesresolveinterval']) { - killbypid('/var/run/filterdns.pid'); - } - $savemsg = get_std_save_message(); system_cron_configure();