QORTector-scripts/setup-pi-automation-headless.sh
crowetic 2525879d6c
Headless version of setup automation script
This script will work on pi machines with pi user, headless.
2022-12-05 13:20:18 -08:00

11 lines
331 B
Bash

#!/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