start qortal core from scratch with newest version

This script will 'refresh' the Qortal Core on the QORTector devices, it will remove the qortal.jar, db folder, and log files. It will then download the newest jar, and re-bootstrap.
This commit is contained in:
crowetic 2022-04-07 12:32:21 -07:00 committed by GitHub
parent 694e020fc5
commit 6a451e6f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
refresh-qortal.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/sh
cd
cd qortal
./stop.sh
sleep 5
rm -R db
rm qortal.jar
rm log.t*
wget https://github.com/qortal/qortal/releases/latest/download/qortal.jar
./start.sh