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