diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-01-07 19:28:22 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-01-07 19:28:22 +0000 |
commit | d6d332cd79cc8f883cc97507116c453dcbddff58 (patch) | |
tree | 32667e356090384a422e86d9464670e54d5fe8f0 | |
parent | 799f2f80f4c82df80890d766979553668007c153 (diff) | |
download | pfsense-packages-d6d332cd79cc8f883cc97507116c453dcbddff58.tar.gz pfsense-packages-d6d332cd79cc8f883cc97507116c453dcbddff58.tar.bz2 pfsense-packages-d6d332cd79cc8f883cc97507116c453dcbddff58.zip |
Fix a few errors:
* <!-- is not a php comment
* Fix bug in looking for remaining squid processes
* Setup squid environment with list from http://forum.pfsense.org/index.php?topic=23.msg2391#msg2391
-rw-r--r-- | packages/squid_ng.xml | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/packages/squid_ng.xml b/packages/squid_ng.xml index 385e9a03..240e12a0 100644 --- a/packages/squid_ng.xml +++ b/packages/squid_ng.xml @@ -336,6 +336,25 @@ touch("/tmp/custom_php_install_command"); + /* make sure this all exists, see: + * http://forum.pfsense.org/index.php?topic=23.msg2391#msg2391 + */ + update_output_window("Setting up Squid environment..."); + mwexec("mkdir -p /var/squid"); + mwexec("chown squid:squid /var/squid"); + mwexec("mkdir -p /var/squid/logs"); + mwexec("chown squid:squid /var/squid/logs"); + mwexec("mkdir -p /var/squid/cache"); + mwexec("chown squid:squid /var/squid/cache"); + mwexec("mkdir -p /usr/local/etc/squid/advanced"); + mwexec("chown squid:squid /usr/local/etc/squid/advanced"); + mwexec("mkdir -p /usr/local/etc/squid/advanced/acls"); + mwexec("chown squid:squid /usr/local/etc/squid/advanced/acls"); + mwexec("touch /usr/local/etc/squid/advanced/acls/src_subnets.acl"); + mwexec("chown squid:squid /usr/local/etc/squid/advanced/acls/src_subnets.acl"); + mwexec("touch /usr/local/etc/squid/advanced/acls/src_unrestricted_ip.acl"); + mwexec("chown squid:squid /usr/local/etc/squid/advanced/acls/src_unrestricted_ip.acl"); + update_output_window("Creating Proxy Server initialization scripts..."); $fout = fopen("/usr/local/etc/rc.d/squid.sh","w"); fwrite($fout, "#!/bin/sh\n"); @@ -381,8 +400,8 @@ } mwexec("/usr/sbin/chown squid:squid /usr/local/etc/squid/advanced/radius"); - <-- EmanuelG: update pf group ownership settings to enhance squid performance and correct issue relating --> - <-- to error message: parseHttpRequest: PF open failed: (13) Permission denied --> + /* EmanuelG: update pf group ownership settings to enhance squid performance and correct issue relating */ + /* to error message: parseHttpRequest: PF open failed: (13) Permission denied */ mwexec("chgrp squid /dev/pf"); mwexec("chmod g+rw /dev/pf"); @@ -408,10 +427,8 @@ $i++; } - if ($i == 30) { - $pid = shell_exec('nohup squid > /dev/null & echo $!'); - shell_exec('kill -9 ' . $pid . '/dev/null'); - } + /* brute force any remaining squid processes out */ + mwxec("/usr/bin/killall squid"); update_output_window("Recursively removing directories hierarchies..."); update_output_window("If existant, log files in /var/squid/logs will remain..."); @@ -431,5 +448,4 @@ <process_kill_command>/usr/local/sbin/squid -k shutdown</process_kill_command> -</packagegui> -
\ No newline at end of file +</packagegui>
\ No newline at end of file |