mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
307 B
17 lines
307 B
#!/bin/sh
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
case "$1" in
|
|
purge)
|
|
rm -rf /var/lib/rspamd
|
|
rm -rf /var/log/rspamd
|
|
rm -rf /run/rspamd
|
|
exit 0;;
|
|
remove|upgrade|disappear|failed-upgrade|abort-*)
|
|
exit 0;;
|
|
*)
|
|
echo "postrm called with unknown argument \`$1'" >&2
|
|
exit 1;;
|
|
esac
|