Merge pull request #532 from Botspot/Itai-Nelken-patch-1

Hopefully fix problem phoenixbyrd had with internet not working after uninstalling lokinet
pull/538/head
Itai Nelken 5 years ago committed by GitHub
commit 1e3761afe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,7 +7,9 @@ function error {
exit 1 exit 1
} }
sudo apt remove lokinet-gui -y && sudo apt remove lokinet -y sudo apt purge lokinet-gui -y || error "Failed to uninstall \"lokinet-gui\"!"
sudo apt purge lokinet -y || error "Failed to uninstall \"lokinet\"!"
sudo apt purge lokinet-bin -y || error "Failed to uninstall \"lokinet-bin\"!"
if [ -e /etc/systemd/system/lokinet.service.d ]; then if [ -e /etc/systemd/system/lokinet.service.d ]; then
echo "removing systemd override" echo "removing systemd override"

Loading…
Cancel
Save