diff options
Diffstat (limited to 'debian/postrm')
-rwxr-xr-x | debian/postrm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/postrm b/debian/postrm new file mode 100755 index 0000000..a343357 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,15 @@ +#!/bin/sh +#DEBHELPER# +# Abort if any command returns an error value +set -e + +case "$1" in + purge) + # This package has previously been removed and is now having + # its configuration purged from the system. + : + rm -rf /var/cache/powertop + ;; +esac + +exit 0 |