From 9bccbe857ed4bd009d134c37456ef401b1784749 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 12 Jun 2005 22:06:03 +0000 Subject: [PATCH] Correct path to killall. Duh, Scott! --- usr/local/www/status_services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/www/status_services.php b/usr/local/www/status_services.php index 49c568e1cc..c35ace7b62 100755 --- a/usr/local/www/status_services.php +++ b/usr/local/www/status_services.php @@ -85,7 +85,7 @@ if($_GET['restartservice'] == "true") { } if($_GET['stopservice'] == "true") { - mwexec("/sbin/killall {$executable_name}"); + mwexec("/usr/bin/killall {$executable_name}"); $status = is_service_running($executable_name); if($status == 1) { $savemsg = "There was an error stopping {$package_name} - {$executable_name}.";