diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-01-31 19:57:17 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-01-31 19:57:17 +0000 |
commit | 99b98752ce1e4116d10fa893c33a238d380f190f (patch) | |
tree | 709134b5ed8bad9d2246065142b1b8f033b98652 /packages | |
parent | ce9dbc6301e3238f2843069e5f358425393e9900 (diff) | |
download | pfsense-packages-99b98752ce1e4116d10fa893c33a238d380f190f.tar.gz pfsense-packages-99b98752ce1e4116d10fa893c33a238d380f190f.tar.bz2 pfsense-packages-99b98752ce1e4116d10fa893c33a238d380f190f.zip |
Be sure to call filter_configure() after installation and deinstallation
Diffstat (limited to 'packages')
-rw-r--r-- | packages/squid.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/squid.xml b/packages/squid.xml index 36ae5cc9..503b9982 100644 --- a/packages/squid.xml +++ b/packages/squid.xml @@ -41,8 +41,10 @@ fclose($fout); system("chmod a+x /usr/local/etc/rc.d/squid.sh"); system("/usr/local/sbin/squid -z"); + filter_configure(); </custom_php_install_command> <custom_php_deinstall_command> system("/usr/bin/killall squid"); + filter_configure(); </custom_php_deinstall_command> </packagegui> |