From 2525879d6cc9b6583c7af378a8ff10b278a5d9a2 Mon Sep 17 00:00:00 2001 From: crowetic <5431064+crowetic@users.noreply.github.com> Date: Mon, 5 Dec 2022 13:20:18 -0800 Subject: [PATCH] Headless version of setup automation script This script will work on pi machines with pi user, headless. --- setup-pi-automation-headless.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup-pi-automation-headless.sh diff --git a/setup-pi-automation-headless.sh b/setup-pi-automation-headless.sh new file mode 100644 index 0000000..e615eaf --- /dev/null +++ b/setup-pi-automation-headless.sh @@ -0,0 +1,10 @@ +#!/bin/sh +cd +curl -L -O https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/auto-fix-qortal.sh +chmod +x auto-fix-qortal.sh +./auto-fix-qortal.sh +curl -L -O https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/auto-fix-cron +crontab auto-fix-cron +rm auto-fix-cron +rm setup-pi-automation-headless.sh +exit 1