simple script to check qortal core status

This script is meant to be placed on the desktop and run manually by double-clicking it and clicking 'run in terminal' - it will simply display the status of the Qortal core to the user, then tail the log for 10 minutes, and exit.

This is meant to be used by QORTector with cron auto-start that doesn't show the Qortal icon, so that the user can still see the status.
This commit is contained in:
crowetic 2022-11-17 17:22:30 -08:00 committed by GitHub
parent ab9ef4afe1
commit c515f2a434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
check-qortal-status.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/sh
cd ~/qortal
./qort admin/status
sleep 10
tail -f log.t*
sleep 600
exit 1