diff options
-rw-r--r-- | perl-install/network/network.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index e72da0e55..321f61ec9 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -579,7 +579,8 @@ sub configure_network { } #- make net_applet reload the configuration - my $pid = chomp_(`pidof -x net_applet`) and kill 1, $pid; + my $pid = chomp_(`pidof -x net_applet`); + $pid and kill 1, $pid; } 1; |