site/tor/entrypoint.sh
2024-08-08 02:57:33 -07:00

9 lines
127 B
Bash
Executable File

#!/bin/bash
if $USE_TOR ; then
echo "@@@@@@@@@@ TOR ENABLED BY ENV"
exec tor
else
echo "@@@@@@@@@@ TOR DISABLED BY ENV"
fi