mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 06:35:07 +03:00
13 lines
276 B
Bash
Executable file
13 lines
276 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
CONF_DIR="/etc/yggdrasil-network"
|
|
|
|
if [ ! -f "$CONF_DIR/yggdrasil.conf" ]; then
|
|
echo "generate $CONF_DIR/yggdrasil.conf"
|
|
yggdrasil genconf -j > "$CONF_DIR/yggdrasil.conf"
|
|
fi
|
|
|
|
yggdrasil run --useconf -l trace < "$CONF_DIR/yggdrasil.conf"
|
|
exit $?
|