diff options
-rwxr-xr-x | perl-install/standalone/net_monitor | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/perl-install/standalone/net_monitor b/perl-install/standalone/net_monitor index 6ec7a2ba2..b2545bd25 100755 --- a/perl-install/standalone/net_monitor +++ b/perl-install/standalone/net_monitor @@ -222,11 +222,8 @@ sub connection() { gtkflush(); - if ($wasconnected == 1) { - system("/etc/sysconfig/network-scripts/net_cnx_down &"); - } else { - system("/etc/sysconfig/network-scripts/net_cnx_up &"); - } + # ergh, our integrist common::system can't lie on the program name :-/ + CORE::system { 'consolehelper' } ($wasconnected == 1 ? '/sbin/ifdown' : '/sbin/ifup', $default_intf) or die N("consolehelper missing"); } sub graph_window_width() { $width - $left_border } |