We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--service
--daemon
Problem This feature would log initial logs to STDOUT/STDERR then go into the background, similar to I2Pd's feature.
STDOUT
STDERR
Temporary Fix First start NANO in the background while saving it to a file.
NANO
NANO & | tee log
Then read the last line of the log, waiting for it to contain the "NANO is running" message.
(tail -f -n0 log &) | grep -q "NANO is running, you can make SAM requests now"
NOTE: this fix is naive, it will not handle timeouts or errors, it will just hang.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
This feature would log initial logs to
STDOUT
/STDERR
then go into the background, similar to I2Pd's feature.Temporary Fix
First start
NANO
in the background while saving it to a file.Then read the last line of the log, waiting for it to contain the "NANO is running" message.
NOTE: this fix is naive, it will not handle timeouts or errors, it will just hang.
The text was updated successfully, but these errors were encountered: