diff options
Diffstat (limited to 'testing/squid/squid.install')
-rw-r--r-- | testing/squid/squid.install | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/squid/squid.install b/testing/squid/squid.install new file mode 100644 index 000000000..e7aa5ff68 --- /dev/null +++ b/testing/squid/squid.install @@ -0,0 +1,26 @@ +post_install() { + if [ -z "$(grep ^proxy: /etc/group)" ]; then + usr/sbin/groupadd -g 15 proxy &>/dev/null + fi + + id proxy &>/dev/null || \ + usr/sbin/useradd -u 15 -g proxy -d /var/empty proxy + + chown proxy.proxy var/{cache,log}/squid + +# cat << EOF +#Release notes: http://www.squid-cache.org/Versions/v3/3.1/RELEASENOTES.html +#EOF +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + usr/sbin/userdel proxy &> /dev/null + if [ ! -z "$(grep ^proxy: /etc/group)" ]; then + usr/sbin/groupdel proxy &>/dev/null + fi +} + |