agora/entrypoint.server.sh.tmpl

18 lines
207 B
Bash
Executable File

#!/bin/bash
set -eu -o pipefail
init_root() {
set -eu
# nothing to do here for now?
}
main() {
set -eu
init_root
/home/$AGORA_USER/agora-server/entrypoint.sh
# tail -f /dev/null
}
main