linkchecker/debian/linkchecker.prerm
2001-06-10 13:00:06 +00:00

17 lines
392 B
Bash
Executable file

#!/bin/sh -e
#
# Written 1998 by Gregor Hoffleit <flight@debian.org>.
# used by Bastian Kleineidam for LinkChecker
PACKAGE=linkchecker
dpkg --listfiles $PACKAGE |
awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
xargs rm -f >&2
rmdir /usr/lib/python2.0/site-packages/linkcheck 2>/dev/null || true
rmdir /usr/lib/python2.0/site-packages/DNS 2>/dev/null || true
#DEBHELPER#
exit 0