-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Closed
Labels
Description
Preamble: I haven't found a repository with /etc/init.d/kibana file so posting it here
Currently there is no way to pass NODE_OPTIONS environment variable to the kibana process other than either hacking init.d script or the kibana executable file. Both are rarely acceptable.
But if the init.d script had
exec env NODE_OPTIONS=$NODE_OPTIONS \"$program\" $args
instead of
exec \"$program\" $args
then it would be a natural way to change it with /etc/default/kibana (which is already imported but useless).
What do you think of this change?
AColmant, joshuar and leighrichman