1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-01 20:22:19 +00:00
i2pd/debian/postrm

13 lines
153 B
Plaintext
Raw Normal View History

2015-12-16 13:22:55 +00:00
#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
rm -f /etc/default/i2pd /var/log/i2pd.log
2015-12-17 05:05:27 +00:00
rm -rf /etc/i2pd
2015-12-16 13:22:55 +00:00
rm -rf /var/lib/i2pd
fi
#DEBHELPER#
exit 0