You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
i2pd/debian/postrm

15 lines
175 B
Bash

#!/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