I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 3e2c5302 authored by HungryHobo's avatar HungryHobo
Browse files

Fix error message with dpkg --purge

parent ff5b7950
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
# $1 is either "remove" or "purge". Since there are no config
# files left after a remove, exit here if called with "purge".
# This avoids calling userdel again which would cause an error.
if [ "$1" = "purge" ]; then
exit 0;
fi
I2PUSER=i2psvc I2PUSER=i2psvc
exec userdel $I2PUSER exec userdel $I2PUSER
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment