fix(bin/emqx): ensure -noinput is prior to -noshell

iex seems to depend on this order, otherwise it terminiates right
after boot
This commit is contained in:
zmstone 2024-06-05 21:54:17 +02:00
parent e1e5dc231d
commit c7f585cc21
1 changed files with 1 additions and 1 deletions

View File

@ -1199,7 +1199,7 @@ case "${COMMAND}" in
esac esac
case "$COMMAND" in case "$COMMAND" in
foreground) foreground)
FOREGROUNDOPTIONS="-enable-feature maybe_expr -noshell -noinput +Bd" FOREGROUNDOPTIONS="-enable-feature maybe_expr -noinput -noshell +Bd"
;; ;;
*) *)
FOREGROUNDOPTIONS='-enable-feature maybe_expr' FOREGROUNDOPTIONS='-enable-feature maybe_expr'