Creating entrypoint.sh to /contrib/docker/

This commit is contained in:
Christer Warén 2018-12-03 05:58:24 +02:00 committed by GitHub
parent 8b7b3452cf
commit 80b876d21d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e
CONF_DIR="/etc/yggdrasil-network"
if [ ! -f "$CONF_DIR/config.conf" ]; then
echo "generate $CONF_DIR/config.conf"
yggdrasil --genconf > "$CONF_DIR/config.conf"
fi
yggdrasil --useconf < "$CONF_DIR/config.conf"
exit $?