-
Notifications
You must be signed in to change notification settings - Fork 4
Voldigate dev2 #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Voldigate dev2 #33
Conversation
… if that was the update route
|
This PR fixes the bug where the web interface fails to start when the Wombat is connected to an external WiFi network instead of running as an Access Point. The BugIn if [[ $elapsed_time -ge $TIMEOUT ]]; then
echo "[ERROR] AP '$AP_NAME' not found within $TIMEOUT seconds."
exit 1 # Exit if the AP wasn't found
fiThis prevents the web server from starting when the device is in client mode. How This PR Fixes ItBy replacing After=network.target
Wants=network.target
After=botui.serviceThe web server will start as long as any network is available, regardless of whether the device is in AP mode or connected to external WiFi. |
Migrate startup routine from script to systemd.