Changeset 5138
- Timestamp:
- Jun 12, 2017, 1:13:28 PM (4 years ago)
- Location:
- lmd/trunk/fuentes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lmd/trunk/fuentes/debian/changelog
r5110 r5138 1 lmd (2.7.5) xenial; urgency=high 2 3 * Newly created semi clients are set as the default pxe boot option if hdd is the current option. 4 5 -- Hector Garcia Huerta <hectorgh@gmail.com> Mon, 12 Jun 2017 13:12:04 +0200 6 1 7 lmd (2.7.4.1) xenial; urgency=high 2 8 -
lmd/trunk/fuentes/lmd-server.install/usr/share/n4d/python-plugins/LmdServer.py
r5076 r5138 97 97 98 98 # Registering imgid for boot PXE MEnu 99 100 objects['LlxBootManager'].pushToBootList("ltsp_label"+str(imgid)); 99 label="ltsp_label"+str(imgid) 100 objects['LlxBootManager'].pushToBootList(label); 101 102 # set this new image as the default boot option if hdd is the current option 103 boot_order=objects['LlxBootManager'].getBootOrder() 104 if len(boot_order)>0 and boot_order[0]=="bootfromhd": 105 new_boot_order=objects['LlxBootManager'].prependBootList(label) 106 objects["LlxBootManager"].setBootOrder(*new_boot_order) 101 107 102 108 return {"status": True, "msg": ret["msg"]}
Note: See TracChangeset
for help on using the changeset viewer.