tor/debian/tor.postrm

12 lines
167 B
Plaintext
Raw Normal View History

2004-01-13 14:40:00 +01:00
#!/bin/sh -e
if [ "$1" = "purge" ]; then
# logs have to be removed according to policy.
rm -rf /var/log/tor/
rm -rf /var/lib/tor/
fi
#DEBHELPER#
exit 0