cryptonas/debian/postrm

13 lines
254 B
Text
Raw Normal View History

#!/bin/sh
if test "$1" = "purge" && getent passwd cryptobox 2>/dev/null >/dev/null \
2006-11-10 09:05:14 +00:00
&& test "$(cd ~cryptobox;pwd)" = /var/cache/cryptobox
then echo "Removing user 'cryptobox' ..."
userdel -r cryptobox
fi
2006-05-30 19:00:34 +00:00
#DEBHELPER#
2005-12-01 18:22:05 +00:00
# return without error
true