mirror of
https://github.com/haugene/docker-transmission-openvpn.git
synced 2025-08-07 23:07:11 +02:00
* Update bug_report.yaml (#1949) * Fixed missing env variables openvpn tunnelUp was missing required env variables: fixed privoxy start/stop same: fixed PEER_DNS and PEER_DNS_PIN_ROUTES added to persistEnv file
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
# Source our persisted env variables from container startup
|
|
. /etc/transmission/environment-variables.sh
|
|
|
|
if [[ "${WEBPROXY_ENABLED}" = "true" ]]; then
|
|
|
|
pkill privoxy
|
|
|
|
fi
|