diff options
Diffstat (limited to 'autoscripts/prerm-python')
-rw-r--r-- | autoscripts/prerm-python | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/autoscripts/prerm-python b/autoscripts/prerm-python new file mode 100644 index 00000000..0dc12731 --- /dev/null +++ b/autoscripts/prerm-python @@ -0,0 +1,5 @@ +if [ "$1" = remove ]; then + dpkg -L #PACKAGE# | + awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | + xargs rm -f >&2 +fi |