-
-
Save JMSwag/de7c9fc174010895a1dcd812ee8d2bb6 to your computer and use it in GitHub Desktop.
Start transmission-daemon and bind it to VPN IP address
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Kill transmission-daemon if it is running | |
transmission_da_pid=$(pgrep transmission-da) | |
if [ $transmission_da_pid ]; then | |
killall transmission-daemon && echo "Closing existing tranmission-daemon processes ..." && sleep 8 | |
fi | |
# Get VPN IP to bind to | |
bind_address=$(ip addr show tun0 | grep inet | awk '{print $2}') | |
# If IP wasn't found then quit | |
if [ -z $bind_address ]; then | |
echo "VPN doesn't seem to be up. Will not start tranmission-daemon" | |
exit | |
fi | |
# Start transmission-daemon | |
transmission-daemon --rpc-bind-address=127.0.0.1 --bind-address-ipv4=$bind_address | |
echo "transmission-daemon started and bound to address $bind_address" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment