Add mute flag for killall

This commit is contained in:
Seth Mos 2008-11-06 12:30:25 +00:00
parent a434ac40e0
commit d2e47dde21
2 changed files with 3 additions and 3 deletions

View File

@ -1611,7 +1611,7 @@ function system_start_ftp_helpers() {
require_once("interfaces.inc");
global $config, $g;
mwexec("/usr/bin/killall ftpsesame");
mwexec("/usr/bin/killall ftpsesame", true);
/* build an array of interfaces to work with */
$iflist = array("lan" => "lan");
@ -1876,4 +1876,4 @@ function set_device_perms() {
if($g['booting']) echo ".";
$config = parse_config();
?>
?>

View File

@ -1223,7 +1223,7 @@ function filter_nat_rules_generate() {
if(!$helpers)
mwexec("/usr/sbin/inetd -wW -R 0 -a 127.0.0.1 /var/etc/inetd.conf");
else
mwexec("/usr/bin/killall -HUP inetd");
mwexec("/usr/bin/killall -HUP inetd", true);
}
}