mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-16 15:58:08 +00:00
11 lines
297 B
Bash
Executable file
11 lines
297 B
Bash
Executable file
#!/bin/sh
|
|
echo "[*] Uninstalling Bitcoin and Haveno, will delete all data!!"
|
|
sleep 10
|
|
sudo rm -rf /root/haveno
|
|
sudo systemctl stop bitcoin
|
|
sudo systemctl stop haveno
|
|
sudo systemctl disable bitcoin
|
|
sudo systemctl disable haveno
|
|
sudo userdel -f -r haveno
|
|
sudo userdel -f -r bitcoin
|
|
echo "[*] Done!"
|