Closed dfunckt closed 7 years ago
When the user's app exits fg complains that the process terminated:
fg
/usr/bin/entry.sh: line 93: fg: job has terminated
This output is captured by the Supervisor and sent over to the Dashboard as if it was output from the user application.
This is due to fg's stderr not being redirected to /dev/null here: https://github.com/resin-io-library/resin-rpi-raspbian/blob/master/entry.sh#L93
/dev/null
That is without using systemd.
fixed in https://github.com/resin-io-library/resin-rpi-raspbian/pull/63
When the user's app exits
fg
complains that the process terminated:This output is captured by the Supervisor and sent over to the Dashboard as if it was output from the user application.
This is due to
fg
's stderr not being redirected to/dev/null
here: https://github.com/resin-io-library/resin-rpi-raspbian/blob/master/entry.sh#L93That is without using systemd.