mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-02 14:46:22 -04:00
Install tor from tor repository and add external tor as default
This commit is contained in:
parent
e2208355b1
commit
1512ed9db3
4 changed files with 11 additions and 2 deletions
|
@ -44,7 +44,7 @@ BITCOIN_RPC_PORT=8332
|
|||
#BITCOIN_RPC_USER=foo
|
||||
#BITCOIN_RPC_PASS=bar
|
||||
|
||||
TOR_PKG="tor"
|
||||
TOR_PKG="tor deb.torproject.org-keyring"
|
||||
TOR_USER=debian-tor
|
||||
TOR_GROUP=debian-tor
|
||||
TOR_HOME=/etc/tor
|
||||
|
@ -69,6 +69,11 @@ sudo -H -i -u "${ROOT_USER}" git config --global advice.detachedHead false
|
|||
sudo -H -i -u "${ROOT_USER}" git clone --branch "${BISQ_REPO_TAG}" "${BISQ_REPO_URL}" "${ROOT_HOME}/${BISQ_REPO_NAME}"
|
||||
|
||||
echo "[*] Installing Tor"
|
||||
sudo -H -i -u "${ROOT_USER}" wget -qO- https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gp
|
||||
g --dearmor | tee /usr/share/keyrings/tor-archive-keyring.gpg >/dev/null
|
||||
sudo -H -i -u "${ROOT_USER}" echo "deb [arch=amd64 signed-by=/usr/share/keyrings/tor-archive-keyring.gpg] https://deb.torproject.o
|
||||
rg/torproject.org focal main" > /etc/apt/sources.list.d/tor.list
|
||||
sudo -H -i -u "${ROOT_USER}" DEBIAN_FRONTEND=noninteractive apt-get update -q
|
||||
sudo -H -i -u "${ROOT_USER}" DEBIAN_FRONTEND=noninteractive apt-get install -qq -y ${TOR_PKG}
|
||||
|
||||
echo "[*] Installing Tor configuration"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue