From adacd4b6ed4eb51f85806cb77b296571fae28328 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 26 Mar 2015 15:38:08 +0000 Subject: [PATCH] fix for https://github.com/opnsense/core/issues/111 (leftover from php-fpm) --- src/etc/rc.linkup | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/etc/rc.linkup b/src/etc/rc.linkup index 24fdb031d..63bf24cb3 100755 --- a/src/etc/rc.linkup +++ b/src/etc/rc.linkup @@ -82,10 +82,6 @@ function handle_argument_group($iface, $argument2) { } if (!file_exists("/var/run/booting")) { - if (isset($_GET)) { - if (!empty($_GET['interface'])) - handle_argument_group($_GET['interface'], $_GET['action']); - } else { if ($argc < 3) { log_error("HOTPLUG event: The number of required parameters not passed!"); exit; @@ -105,5 +101,4 @@ if (!file_exists("/var/run/booting")) { if (!empty($interface)) { handle_argument_group($interface, $action); } - } }