-
-
Notifications
You must be signed in to change notification settings - Fork 796
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
[Bug]: Installer silently fails on Rasberry Pi #1729
Comments
Here is the full trace of what the installer is doing:
|
Running the installer with
|
There's no issue with the installer. Your device doesn't have an internet connection 😉 Try removing the
|
Thank you for your quick response. I have looked into the issue for a couple more hours. It was caused by network problems (github.com traffic was not routed correctly in some circumstances). It can be closed unless there should be more error handling added to the installer script. Sorry for the trouble. |
Actually, I think you raise a good point. If the install loader is unable to reach github.com, it could notify the user that the device has connectivity issues. It's a better alternative than failing silently. |
I had a similar problem, which took longer than needed to debug as the installer did not provide adequate verbosicity on the second run attempt. ( Once failed, the installer would not display any indication of trying to run again - suggesting, as it turns out incorrectly, that it would not. )
Solved by sudo nano /etc/resolv.conf
# insert the following line and save
# nameserver 8.8.8.8
sudo systemctl restart dnsmasq.service OS: Armbian |
Code of Conduct
Issue reporting checklist
Operating System
Raspberry Pi OS (64-bit) Lite Bookworm
Quick install or Manual setup?
Quick install
Onboard wireless chipset or external adapter?
Onboard wireless chipset
Hardware
Raspberry Pi 5
RaspAP version
3.1.3 (Latest)
Other software or services running with RaspAP?
No other software
Contact details (optional)
Bug description
The quick installer silently fails on my Raspberry Pi.
Steps to reproduce
Execute the quick installer:
curl -sL https://install.raspap.com | bash
Screenshots
No response
Additional context
The reason for this failure is that it fails to download the proper installer files. The following command fails in
_load_installer
:The
wget
command runs into a HTTP 404 error and fails silently. Thus, I am running into two errors:master
should be used.wget
command fails silently in this case and does not report the error to the userI have not fully analyzed what is going on in the installer script but I believe that the root cause could be in
_get_release
as the firstcurl
to determine the latest release returns nothing.Relevant log output
There is no log output. The log file in /tmp is empty.
The text was updated successfully, but these errors were encountered: