mirror of
https://github.com/luzifer-docker/yggdrasil.git
synced 2024-11-08 05:30:02 +00:00
8 lines
185 B
Bash
Executable file
8 lines
185 B
Bash
Executable file
#!/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}
|