From 6a451e6f6c0eaaf312adc8d335c16ab66de8dda0 Mon Sep 17 00:00:00 2001 From: crowetic <5431064+crowetic@users.noreply.github.com> Date: Thu, 7 Apr 2022 12:32:21 -0700 Subject: [PATCH] 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. --- refresh-qortal.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 refresh-qortal.sh diff --git a/refresh-qortal.sh b/refresh-qortal.sh new file mode 100644 index 0000000..faa12c7 --- /dev/null +++ b/refresh-qortal.sh @@ -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