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.)
9 lines
297 B
Bash
9 lines
297 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
|
|
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
|