diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-01-21 21:37:57 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-01-21 21:37:57 +0000 |
commit | 16ddf7f6592733710fc7226a222df4db8a134236 (patch) | |
tree | 7498e304da7471fdd249e62605091ea88eef855c /packages | |
parent | 080b6412d7e7bc349ef7c0eaed3eb5159cddb7d4 (diff) | |
download | pfsense-packages-16ddf7f6592733710fc7226a222df4db8a134236.tar.gz pfsense-packages-16ddf7f6592733710fc7226a222df4db8a134236.tar.bz2 pfsense-packages-16ddf7f6592733710fc7226a222df4db8a134236.zip |
Killall siproxd instead of using stop_service() which seems to hang.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/siproxd.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/siproxd.inc b/packages/siproxd.inc index de6fecb3..f198b4b1 100644 --- a/packages/siproxd.inc +++ b/packages/siproxd.inc @@ -168,7 +168,7 @@ function sync_package_siproxd() { ) ); log_error("16"); - stop_service("siproxd"); + exec("killall siproxd"); start_service("siproxd"); log_error("17"); conf_mount_ro(); @@ -177,4 +177,4 @@ function sync_package_siproxd() { log_error("19"); } -?>
\ No newline at end of file +?> |