mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
1c34ed97fa
- lokinet is the package that configures a lokinet client - lokinet-router configures a lokinet router - lokinet-bin contains the binaries both of the above require
14 lines
272 B
Bash
14 lines
272 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = purge ]; then
|
|
ucf --purge /etc/loki/lokinet.ini
|
|
ucfr --purge lokinet /etc/loki/lokinet.ini
|
|
rm -f /etc/loki/lokinet.ini
|
|
rm -rf /var/lib/lokinet/{*.{signed,private},lokinet.pid,metrics.json,profiles.dat,netdb}
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|