From 9f6f6548fe5844a6b6af60eb7864b8b77d7810ab Mon Sep 17 00:00:00 2001 From: Matthew Thomas Date: Sun, 8 Nov 2020 10:45:08 -0600 Subject: [PATCH] Changes to make systemd docs work with 3.0 CREATE_TUN_DEVICE is now set to true by default and spaces in OPENVPN_CONFIG are no longer escaped. --- docs/systemd-integration.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/systemd-integration.md b/docs/systemd-integration.md index 794afb99a..d05400913 100755 --- a/docs/systemd-integration.md +++ b/docs/systemd-integration.md @@ -21,12 +21,11 @@ ExecStartPre=/usr/bin/docker pull haugene/transmission-openvpn ExecStart=/usr/bin/docker run \ --name transmission-openvpn \ --cap-add=NET_ADMIN \ - --device=/dev/net/tun \ -v /home/bittorrent/data/:/data \ -e "OPENVPN_PROVIDER=TORGUARD" \ -e "OPENVPN_USERNAME=bittorrent@example.com" \ -e "OPENVPN_PASSWORD=hunter2" \ - -e "OPENVPN_CONFIG=CA\ Toronto" \ + -e "OPENVPN_CONFIG=CA Toronto" \ -e "OPENVPN_OPTS=--inactive 3600 --ping 10 --ping-exit 60" \ -e "TRANSMISSION_UMASK=0" \ -p 9091:9091 \ @@ -53,4 +52,4 @@ If it is stopped or killed in any fashion, systemd will restart the container. I $ sudo systemctl stop transmission-openvpn.service # Later ... $ sudo systemctl start transmission-openvpn.service -``` \ No newline at end of file +```