mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
12 lines
167 B
Text
12 lines
167 B
Text
|
#!/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
|