site/tor/entrypoint.sh
2024-08-08 04:42:12 -07:00

9 lines
135 B
Bash
Executable File

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