pkg://dosemu_1.2.1-3_i386.deb:947084/postrm
info downloads
#!/bin/sh
# $Id: postrm,v 1.14 2001/02/18 05:06:43 herbert Exp $
#
# post-removal script for the Debian GNU/Linux dosemu package
#
set -e
case "$1" in
abort-upgrade | abort-install)
;;
remove)
;;
upgrade | failed-upgrade | disappear)
;;
purge)
rm -rf /etc/dosemu /var/lib/dosemu
;;
*)
echo "$0: incorrect arguments: $*" >&2
exit 1
;;
esac
# Automatically added by dh_installmenu
if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
# End automatically added section
exit 0