From ebafda220af0bbaa89fb9357bf75ad7ee0694433 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 10 Nov 2008 21:43:39 +0000 Subject: [PATCH] Remove scary logging statements which are debugging only to decrease support drama. --- etc/rc.linkup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/rc.linkup b/etc/rc.linkup index 6c86190a38..5f99faae61 100755 --- a/etc/rc.linkup +++ b/etc/rc.linkup @@ -50,18 +50,18 @@ log_error("Processing {$argument1} - {$argument2}"); $iface = convert_real_interface_to_friendly_interface_name($argument1); if($iface == "") { - log_error("Not a valid interface \"$iface\""); + //log_error("Not a valid interface \"$iface\""); return; } if($argument2 == "") { - log_error("Not a valid interface action \"$argument2\""); + //log_error("Not a valid interface action \"$argument2\""); return; } if($config['interfaces'][$iface]['ipaddr'] <> "dhcp" and $config['interfaces'][$iface]['ipaddr'] <> "pppoe" and $config['interfaces'][$iface]['ipaddr'] <> "bigpond" and $config['interfaces'][$iface]['ipaddr'] <> "pptp") { - log_error("Hotplug event detected for {$argument1} but ignoring since interface is not set for DHCP"); + //log_error("Hotplug event detected for {$argument1} but ignoring since interface is not set for DHCP"); exec("/usr/sbin/arp -d -i {$argument1} -a"); } else { switch ($argument2) {