diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-19 19:25:40 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-19 19:25:40 +0000 |
commit | 7e228f73542a12af6d55c3a1030bf794979e6b14 (patch) | |
tree | 95bdf208628b1237fb217e86929f31b68c468605 /packages/squid.xml | |
parent | 561ca85eca662b0b16b87fbabc3c4acf4b01efe3 (diff) | |
download | pfsense-packages-7e228f73542a12af6d55c3a1030bf794979e6b14.tar.gz pfsense-packages-7e228f73542a12af6d55c3a1030bf794979e6b14.tar.bz2 pfsense-packages-7e228f73542a12af6d55c3a1030bf794979e6b14.zip |
* Cleanup vim's smart tab crap
* move filter_configure(); from pre_deinstall to deinstall target since we now depend on the package to be removed from the installed package manifest
Diffstat (limited to 'packages/squid.xml')
-rw-r--r-- | packages/squid.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/squid.xml b/packages/squid.xml index 7af37088..e5a3d2b6 100644 --- a/packages/squid.xml +++ b/packages/squid.xml @@ -42,17 +42,17 @@ fwrite($fout, "/usr/local/sbin/squid\n\n"); fclose($fout); system("chmod a+x /usr/local/etc/rc.d/squid.sh"); - system("/usr/local/sbin/squid -z"); + system("/usr/local/sbin/squid -z"); system("/usr/local/sbin/squid"); filter_configure(); </custom_php_install_command> <custom_php_pre_deinstall_command> exec("mv /var/db/pkg/squid* /tmp/"); - filter_configure(); exec("mv /tmp/squid* /var/db/pkg/"); </custom_php_pre_deinstall_command> - <custom_php_deinstall_command> - exec("/bin/rm -rf /usr/local/squid"); + <custom_php_deinstall_command> + exec("/bin/rm -rf /usr/local/squid"); + filter_configure(); </custom_php_deinstall_command> <start_command>/usr/local/sbin/squid</start_command> <process_kill_command>squid</process_kill_command> |