mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
* Split seednode systemd service ExecStart command into multiple lines * Add setting in seednode configuration to specify btcnode host/port * Tweak seednode torrc configuration options to improve P2P connectivity * Require bitcoin.service from bisq-seednode.service via systemd binding * Make seednode installer run from master and build bisq from release tag * Seednode must be shutdown using `kill -9` until #3884 is fixed * Fix seednode uninstall script to use correct service names * Disable CircuitBuildTimeout in seednode Tor configuration * Disable seednode torrc advanced configuration options for now
11 lines
305 B
Bash
Executable file
11 lines
305 B
Bash
Executable file
#!/bin/sh
|
|
echo "[*] Uninstalling Bitcoin and Bisq, will delete all data!!"
|
|
sleep 10
|
|
sudo rm -rf /root/bisq
|
|
sudo systemctl stop bitcoin
|
|
sudo systemctl stop bisq-seednode
|
|
sudo systemctl disable bitcoin
|
|
sudo systemctl disable bisq-seednode
|
|
sudo userdel -f -r bisq
|
|
sudo userdel -f -r bitcoin
|
|
echo "[*] Done!"
|