@tom-elliott said in Change menu boot order:
So ordering becomes problematic as the all hosts items show in either the non reg or reg hosts. So priority should go where? Should non reg hosts be displayed before or after all host items. Or vice versa? Similarly for reg hosts. Or should we just do it based on numbers.
I looked into this a bit then got lost how fog imported the pxeMenu table. I was hoping it was a sql query to where I could just add a new integer field to the table as display order. Then use a sql statement like
select * from pxeMenu order by pxeOrder asc, pxeID asc That would allow pxeOrder to override pxeID if set, otherwise pxeID indexing would work the same as it does now. You could default pxeOrder to 0 so the pxeMenu would work as it does today and then let the FOG Admin mix up the menu. But alas I could not pull it off, but it was the plan.