fix the tinyproxy start script

This commit is contained in:
Jeremy Andrews
2018-01-02 08:39:17 +13:00
parent ef66e85f34
commit f03778866c
4 changed files with 39 additions and 29 deletions

View File

@@ -77,5 +77,5 @@
#TRANSMISSION_WATCH_DIR=/data/watch #TRANSMISSION_WATCH_DIR=/data/watch
#TRANSMISSION_WATCH_DIR_ENABLED=true #TRANSMISSION_WATCH_DIR_ENABLED=true
#TRANSMISSION_HOME=/data/transmission-home #TRANSMISSION_HOME=/data/transmission-home
#WEBPROXY_ENABLED=true #WEBPROXY_ENABLED=false
#WEBPROXY_PORT=8888 #WEBPROXY_PORT=8888

View File

@@ -106,6 +106,8 @@ ENV OPENVPN_USERNAME=**None** \
"TRANSMISSION_WATCH_DIR_ENABLED=true" \ "TRANSMISSION_WATCH_DIR_ENABLED=true" \
"TRANSMISSION_HOME=/data/transmission-home" \ "TRANSMISSION_HOME=/data/transmission-home" \
"ENABLE_UFW=false" \ "ENABLE_UFW=false" \
WEBPROXY_ENABLED=false \
WEBPROXY_PORT=8888 \
PUID=\ PUID=\
PGID= PGID=

View File

@@ -1,42 +1,46 @@
#!/bin/bash #!/bin/sh
# Source our persisted env variables from container startup
. /etc/transmission/environment-variables.sh
PROXY_CONF='/etc/tinyproxy.conf' PROXY_CONF='/etc/tinyproxy.conf'
DEFAULT_PORT=8888
if [ "${WEBPROXY_ENABLED}" = "true" ]; then set_port()
{
echo "STARTING TINYPROXY" expr $1 + 0 1>/dev/null 2>&1
statut=$?
if [ -z "$WEBPROXY_PORT" ] ; then if test $statut -gt 1
set_port $WEBPROXY_PORT then
else echo "Port [$1]: Not a number" >&2; exit 1
# Always default back to port 8888
set_port 8888
fi
/etc/init.d/tinyproxy start
echo "Tinyproxy startup script complete."
fi
set_port () {
re='^[0-9]+$'
if ! [[ $1 =~ $re ]] ; then
echo "Port: Not a number" >&2; exit 1
fi fi
# Port: Specify the port which tinyproxy will listen on. Please note # Port: Specify the port which tinyproxy will listen on. Please note
# that should you choose to run on a port lower than 1024 you will need # that should you choose to run on a port lower than 1024 you will need
# to start tinyproxy using root. # to start tinyproxy using root.
if [ $1 \< 1024 ]; if test $1 -lt 1024
then then
echo "tinyproxy: $1 is lower than 1024. Ports below 1024 are not permitted."; echo "tinyproxy: $1 is lower than 1024. Ports below 1024 are not permitted.";
exit 1 exit 1
fi; fi
echo "Setting tinyproxy port to $1"; echo "Setting tinyproxy port to $1";
sed -i -e"s,^Port .*,Port $1," $PROXY_CONF sed -i -e"s,^Port .*,Port $1," $2
} }
if [ "${WEBPROXY_ENABLED}" = "true" ]; then
echo "STARTING TINYPROXY"
if [ -z "$WEBPROXY_PORT" ] ; then
set_port ${WEBPROXY_PORT} ${PROXY_CONF}
else
# Always default back to port 8888
set_port ${DEFAULT_PORT} ${PROXY_CONF}
fi
/etc/init.d/tinyproxy start
echo "Tinyproxy startup script complete."
fi

View File

@@ -79,3 +79,7 @@ export ENABLE_UFW={{ .Env.ENABLE_UFW }}
export PUID={{ .Env.PUID }} export PUID={{ .Env.PUID }}
export PGID={{ .Env.PGID }} export PGID={{ .Env.PGID }}
# Need to pass through our tinyproxy settings
export WEBPROXY_ENABLED={{ .Env.WEBPROXY_ENABLED }}
export WEBPROXY_PORT={{ .Env.WEBPROXY_PORT }}