You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon install of AREDN on hardware on a platform that is unable to be identified by getBoard() in hardware.uc, the web app crashes upon FirstBoot. This occurred to me when I was installing AREDN on a bare iron x64 system
Does this issue still occur on the latest version?
Present in nightly
Expected behavior
uhttpd starts normally on firstboot
Additional context
My quick fix was eddting getBoard and adding a else { boardJson.model.id = "vmware"; boardJson.model.name = "VMware"; }
at the end of getBoard()
Which causes the script to just return "VMware" if it can't identify the system. This has successfully worked around the glitch but is a duct tape solution.
The text was updated successfully, but these errors were encountered:
Describe the bug
Upon install of AREDN on hardware on a platform that is unable to be identified by getBoard() in hardware.uc, the web app crashes upon FirstBoot. This occurred to me when I was installing AREDN on a bare iron x64 system
Present in nightly
Expected behavior
uhttpd starts normally on firstboot
Additional context
My quick fix was eddting getBoard and adding a
else { boardJson.model.id = "vmware"; boardJson.model.name = "VMware"; }
at the end of getBoard()
Which causes the script to just return "VMware" if it can't identify the system. This has successfully worked around the glitch but is a duct tape solution.
The text was updated successfully, but these errors were encountered: