diff options
author | D. V. Serg <dvserg@pfsense.org> | 2008-05-16 11:00:22 +0000 |
---|---|---|
committer | D. V. Serg <dvserg@pfsense.org> | 2008-05-16 11:00:22 +0000 |
commit | 5b4f5957fa7c46f36bcd67a944f27ceeb402d237 (patch) | |
tree | 76ca91074b7e2765caa7c223b3314237ac508bd0 /packages | |
parent | e5f5ecabceb4248e9cc9fc183d9c417f6a0f7fa3 (diff) | |
download | pfsense-packages-5b4f5957fa7c46f36bcd67a944f27ceeb402d237.tar.gz pfsense-packages-5b4f5957fa7c46f36bcd67a944f27ceeb402d237.tar.bz2 pfsense-packages-5b4f5957fa7c46f36bcd67a944f27ceeb402d237.zip |
fix bug
Diffstat (limited to 'packages')
-rw-r--r-- | packages/squidGuard/squidguard_configurator.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/squidGuard/squidguard_configurator.inc b/packages/squidGuard/squidguard_configurator.inc index af8b9f88..1edab85a 100644 --- a/packages/squidGuard/squidguard_configurator.inc +++ b/packages/squidGuard/squidguard_configurator.inc @@ -1565,7 +1565,7 @@ function sg_update_blacklist($from_file) { file_put_contents($shfile, $sh_scr); set_file_access($shfile, OWNER_NAME, 0755); # 0755 - script will execute # kill exists rebuild processes - mwexec("kill `ps auxw | grep \"$shfile\" | grep -v \"grep\" | awk '{print $2}'`"); # sh script +# mwexec("kill `ps auxw | grep \"$shfile\" | grep -v \"grep\" | awk '{print $2}'`"); # sh script mwexec("kill `ps auxw | grep \"squidGuard_blk_rebuild\" | grep -v \"grep\" | awk '{print $2}'`"); # squidGuard process mwexec_bg("nice -n 5 $shfile"); sg_addlog("sg_update_blacklist: Started sh script '$shfile'.", 1); |