mirror of
https://github.com/Motion-Project/motion.git
synced 2026-02-26 03:17:34 -05:00
27 lines
294 B
Bash
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
|