You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
if test "$1" = "purge" && getent passwd cryptobox 2>/dev/null >/dev/null \
|
|
&& test "$(cd ~cryptobox;pwd)" = /var/lib/cryptobox
|
|
then echo "Removing user 'cryptobox' ..."
|
|
userdel -r cryptobox
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
# return without error
|
|
true
|