Merge pull request #445 from clandmeter/busybox-compat

scripts: BusyBox compatibility
pull/451/head
Isaac Connor 2014-06-25 15:24:51 -04:00
commit 676c73e26e
1 changed files with 2 additions and 2 deletions

View File

@ -784,14 +784,14 @@ sub killAll
sleep( $delay );
foreach my $daemon ( @daemons )
{
my $cmd = "killall --quiet --signal TERM $daemon";
my $cmd = "killall -q -s TERM $daemon";
Debug( $cmd );
qx( $cmd );
}
sleep( $delay );
foreach my $daemon ( @daemons )
{
my $cmd = "killall --quiet --signal KILL $daemon";
my $cmd = "killall -q -s KILL $daemon";
Debug( $cmd );
qx( $cmd );
}