Use this to setup CHD automation scripts on pi

This script is used to SETUP/INSTALL the auto-fix-qortal script and automation therein on pi devices with pi username.

If your pi device is not running with default pi username, you will need to modify the paths so that they utilize the correct username.

in theory it will also start another terminal, and run the auto-fix-qortal script itself in that new terminal. (I do not know if this will work on headless devices this way, if not I will write another script targeted at headless setup.)
This commit is contained in:
crowetic 2022-12-05 12:41:27 -08:00 committed by GitHub
parent e62fb032df
commit bea3353a80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
setup-pi-automation Normal file
View File

@ -0,0 +1,8 @@
#!/bin/sh
cd
curl -L -O https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/auto-fix-qortal.sh
chmod +x auto-fix-qortal.sh
gnome-terminal -- ./auto-fix-qortal.sh
curl -L -O https://raw.githubusercontent.com/crowetic/QORTector-scripts/main/auto-fix-cron
crontab auto-fix-cron
exit 1