From 6dd5adef4c680ae041a7b8d1e4d6a1dab00a7efd Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 5 Sep 2012 17:29:45 +0000 Subject: (reload_net_applet) fix crash when net_applet doesn't run (mga#6040) --- lib/network/network.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/network/network.pm') diff --git a/lib/network/network.pm b/lib/network/network.pm index ccc3ec9..2e0ee40 100644 --- a/lib/network/network.pm +++ b/lib/network/network.pm @@ -802,7 +802,7 @@ sub easy_dhcp { sub reload_net_applet() { #- make net_applet reload the configuration my $pid = chomp_(`pidof -x net_applet`); - $pid and kill 1, $pid; + $pid and eval { kill 1, $pid }; } sub configure_network { -- cgit v1.2.1