mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
13 lines
136 B
Plaintext
13 lines
136 B
Plaintext
|
#!/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
|