mirror of
https://github.com/safing/portmaster-packaging.git
synced 2026-05-20 20:10:34 +00:00
16 lines
215 B
Bash
16 lines
215 B
Bash
#!/bin/sh -e
|
|
|
|
#DEBHELPER#
|
|
|
|
case "$1" in
|
|
purge)
|
|
rm -rf /var/lib/portmaster
|
|
;;
|
|
remove)
|
|
rm -rf /var/lib/portmaster/updates
|
|
;;
|
|
upgrade)
|
|
# We don't want to remove anything in the upgrade
|
|
# phase.
|
|
;;
|
|
esac |