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:
parent
e1e5dc231d
commit
c7f585cc21
2
bin/emqx
2
bin/emqx
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue