Package: swapd Version: 0.2-10 swapd's postinst creates /swap, and its postrm tries to remove it, but fails, because of this:
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|
disappear)
;;
purge)
-rmdir --ignore-fail-on-non-empty /swap
As you see, purge is mentioned twice, so the second time is never
matched and therefore the directory is not removed.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

