1
0
forked from finn/site
Files
site/tor/entrypoint.sh

9 lines
127 B
Bash
Raw Normal View History

2024-08-08 02:57:33 -07:00
#!/bin/bash
if $USE_TOR ; then
echo "@@@@@@@@@@ TOR ENABLED BY ENV"
exec tor
else
echo "@@@@@@@@@@ TOR DISABLED BY ENV"
fi