1
0
Fork 0
man-db/debian/postrm
Daniel Baumann 0753cdaf16
Adding debian version 2.13.1-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 08:13:56 +02:00

24 lines
461 B
Bash

#!/bin/sh
set -e
oldcatdir="/var/catman"
catdir="/var/cache/man"
case $1 in
purge)
# removing all catpage hierarchies
if [ -d $oldcatdir ]; then
echo " Removing catpages as well as $oldcatdir hierarchy."
rm -rf $oldcatdir 2>/dev/null || true
fi
if [ -d $catdir ]; then
echo " Removing catpages as well as $catdir hierarchy."
rm -rf $catdir 2>/dev/null || true
fi
rm -f /var/lib/man-db/auto-update
;;
esac
#DEBHELPER#
exit 0