And through FOG, it is possible to change the Boot Order? During deployment, the Boot Order switches to Windows/Debian/Ubuntu. But suppose I want to change it again automatically when creating an OS Task, so that the machine boots via iPXE again and installs the OS I need. If this is possible, please clarify how to do it.
C
Latest posts made by chevengur
-
Boot Orderposted in FOG Problems
-
RE: FOG Rebootposted in FOG Problems
@Tom-Elliott That’s right, in the UI I check the box, but in the POST request this flag is missing, or maybe I’m not naming it correctly?
-
FOG Rebootposted in FOG Problems
Hi everyone, I ran into an issue: I’m trying to perform a one-time system reboot in Power Management via Python requests. However, the problem is that after this command, the computer creates a Cron Schedule, causing it to reboot continuously. Is there any way to avoid this? In the GUI, there is a “Perform Immediately” flag that sends a one-time reboot request.

def reboot(self): REBOOT_URL = "http://IP/fog/powermanagement" payload = { "performImmediately": 1, # doesn't work "hostID": 13, "min": 0, "hour": 0, "dom": 0, "month": 0, "dow": 0, "action": "reboot" } r = requests.post( REBOOT_URL, headers=self.headers, json=payload, verify=False ) print(r.status_code, r.text)