mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
13 lines
268 B
Bash
13 lines
268 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
echo "Container startup (Telemt)"
|
||
|
|
|
||
|
|
if [ ! -f /data/config.toml ]; then
|
||
|
|
echo "ERROR: /data/config.toml not found — run configure_container first"
|
||
|
|
tail -f /dev/null
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
mkdir -p /data/tlsfront
|
||
|
|
exec /usr/local/bin/telemt /data/config.toml
|