mirror of
https://github.com/luzifer-docker/yggdrasil.git
synced 2024-11-08 13:40:00 +00:00
9 lines
185 B
Bash
9 lines
185 B
Bash
|
#!/usr/bin/dumb-init /bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
conf_file=/config/yggdrasil.conf
|
||
|
|
||
|
[ -f "${conf_file}" ] || yggdrasil -genconf >${conf_file}
|
||
|
|
||
|
exec yggdrasil -useconffile ${conf_file}
|