Package: mpt-status Severity: normal
,---- [ cat /var/lib/dpkg/info/mpt-status.prerm ] | #!/bin/sh | set -e | # Automatically added by dh_installinit | if [ -x "/etc/init.d/mpt-statusd" ]; then | if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then | invoke-rc.d mpt-statusd stop || exit $? | else | /etc/init.d/mpt-statusd stop || exit $? | fi | fi | # End automatically added section `---- If stopping mpt-statusd fails, uninstalling is not possible anymore because of "|| exit $?". Someone has to run something like: rm /var/lib/dpkg/info/mpt-status.prerm apt-get --purge remove mpt-status to be able to remove the package then. Changing the "|| exit $?" to "|| true" will fix the problem, that's what many packages do as well. regards, -mika- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

