Files
motion/debian/postrm
2014-09-06 14:03:03 -07:00

27 lines
294 B
Bash

#!/bin/sh
set -e
case "$1" in
purge)
rm -rf /etc/motion
userdel motion || true
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
esac
#DEBHELPER#
exit 0