mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00: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
|