Merge branch 'master' into release-0.2.9

This commit is contained in:
antitree 2017-07-08 20:29:03 -04:00 committed by GitHub
commit d7e0176f97
2 changed files with 6 additions and 3 deletions

View File

@ -155,7 +155,7 @@ Here are a few things to try if you're runing into issues:
This project is in no way associated with the Tor Project or their developers. Like many people I'm a fan of Tor and recommend considering ways you can help the project. Consider running a relay, donating, or writing code. This project is in no way associated with the Tor Project or their developers. Like many people I'm a fan of Tor and recommend considering ways you can help the project. Consider running a relay, donating, or writing code.
### References ### Resources
- https://github.com/andrewmichaelsmith/private-tor-network-kube Used some of this work to port to a kubernetes config
- https://github.com/chriswayg/tor-server - https://github.com/chriswayg/tor-server
- https://www.torproject.org/docs/tor-relay-debian.html.en - https://www.torproject.org/docs/tor-relay-debian.html.en

View File

@ -18,7 +18,10 @@ if [ ! -e /tor-config-done ]; then
# Host specific modifications to the torrc file # Host specific modifications to the torrc file
echo -e "DataDirectory ${TOR_DIR}/${TOR_NICKNAME}" >> /etc/tor/torrc echo -e "DataDirectory ${TOR_DIR}/${TOR_NICKNAME}" >> /etc/tor/torrc
TOR_IP=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/') # Updated to handle docker stack/swarm network overlays
TOR_IP=$(ip addr show eth1 | grep "inet" | grep -v '\/32'| awk '{print $2}' | cut -f1 -d'/')
NICS=$(ip addr | grep 'state UP' | awk '{print $2}' | cut -f1 -d':')
if
echo "Address ${TOR_IP}" >> /etc/tor/torrc echo "Address ${TOR_IP}" >> /etc/tor/torrc
echo -e "ControlPort 0.0.0.0:9051" >> /etc/tor/torrc echo -e "ControlPort 0.0.0.0:9051" >> /etc/tor/torrc
if [ -z "${TOR_CONTROL_PWD}" ]; then if [ -z "${TOR_CONTROL_PWD}" ]; then