i2pd/debian/postrm
r4sas 1dcb878796 update debian and rpm stuff to 2.32.0
Signed-off-by: r4sas <r4sas@i2pmail.org>
2020-05-25 12:44:34 +00:00

15 lines
175 B
Bash
Executable File

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