Unable to remove iPXE New Menu Entry
-
-
mysql
use fog
SELECT pxeID, pxeName, pxeDesc FROM pxeMenu WHERE pxeDesc = 'Boot CD 15.2';
That should return the row that you didn’t fill out completely, including the ID. If it does return the right row you can then delete that entry by ID.
Be sure to replace the ID number in this command!
DELETE FROM pxeMenu WHERE pxeID = '0';
-
Thanks Wayne, this worked perfectly.