1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00
i2pd/debian/postrm
2015-12-17 04:39:08 +00:00

13 lines
136 B
Bash
Executable File

#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
rm -f /etc/default/i2pd /var/log/i2pd.log
rm -rf /var/lib/i2pd
fi
#DEBHELPER#
exit 0