Hi,
I'm creating a custom image based on the original RevPI image.
After the image is flushed to the device I'm facing an issue that piTest tool cannot find any variables (for example: RevPiLED).
The issue can be solved with starting PiCtory and adding device to configuration. After save and driver restart the variable is found.
I guess: configuration files are generated and some processes restarted, piControl maybe ?
I want to completely disable the Web GUI for Revolution PI, so the questions is:
How can i initialize the RevPiLED variable programmatically? What kind of configuration files must be prepared manually ?
Thanks for your help
RevPi Connect: Initialize variables after flushing new image
Re: RevPi Connect: Initialize variables after flushing new image
Hi you may copy a valid "config.rsc" file to "/etc/revpi". Disabling the Webserver is easy just disable the Apache2 daemon
Code: Select all
sudo systemctl disable apache2
Re: RevPi Connect: Initialize variables after flushing new image
Thanks! It worked!