diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-02-04 03:54:56 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-02-04 03:54:56 +0000 |
commit | aa360c35f18e81059e7e0f7c15e6c65318321dca (patch) | |
tree | a0746f05aebb48c9277477438fe6014dd1c5f632 /packages | |
parent | 48faf992813c6dfa528bf2efbf70fd60ed948234 (diff) | |
download | pfsense-packages-aa360c35f18e81059e7e0f7c15e6c65318321dca.tar.gz pfsense-packages-aa360c35f18e81059e7e0f7c15e6c65318321dca.tar.bz2 pfsense-packages-aa360c35f18e81059e7e0f7c15e6c65318321dca.zip |
Alert user when a command is in progress
Diffstat (limited to 'packages')
-rw-r--r-- | packages/squid_ng.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/squid_ng.xml b/packages/squid_ng.xml index 56e6bab1..ec0e8ee5 100644 --- a/packages/squid_ng.xml +++ b/packages/squid_ng.xml @@ -187,15 +187,18 @@ </fields> <custom_add_php_command_late> global_write_squid_config(); + update_output_window("Reconfiguring Squid..."); mwexec("/usr/local/sbin/squid -k reconfigure"); </custom_add_php_command_late> <custom_php_install_command> custom_php_install_command(); write_static_squid_config(); + update_output_window("Reconfiguring Squid..."); mwexec("/usr/local/sbin/squid -k reconfigure"); start_service("squid"); </custom_php_install_command> <custom_php_deinstall_command> + update_output_window("Uninstalling Squid..."); custom_php_deinstall_command(); stop_service("squid"); </custom_php_deinstall_command> |