#! /bin/sh set -e case "$1" in remove) ;; purge) echo "Purging startup links..." if [ -f /etc/init.d/squid-ssl ]; then update-rc.d squid-ssl remove > /dev/null rm -f /etc/init.d/squid-ssl fi echo "Purging logfiles..." if [ -d /etc/squid-ssl/squid.conf ]; then rm -rf /var/log/squid-ssl fi if [ -f /etc/squid-ssl/squid.conf ]; then echo "Removing the config-file .." rm -f /etc/squid-ssl/squid.conf fi # # We do not remove /var/spool/squid because that might # take a lot of time. Most of the time it is on a seperate # disk anyway and it is faster to do a mkfs on it.. # echo "Please, remove /var/spool/squid yourself." ;; failed-upgrade) ;; upgrade|abort-install|abort-upgrade|disappear) ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0