mirror of
https://github.com/PurpleI2P/i2pdbrowser
synced 2025-01-30 16:34:14 +00:00
15 lines
175 B
Plaintext
15 lines
175 B
Plaintext
|
#!/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
|