From dd6a1eafc05e6383e563f8d402902cbb1bf1f07d Mon Sep 17 00:00:00 2001 From: Uggla Date: Thu, 15 Oct 2015 13:54:17 +0200 Subject: [PATCH] Add UEFI mode. --- examples/simple-proliant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-proliant.py b/examples/simple-proliant.py index ef0b3fe..ce33940 100644 --- a/examples/simple-proliant.py +++ b/examples/simple-proliant.py @@ -63,7 +63,7 @@ remote_mgmt.Systems.systems_list[0].bios.set_parameter("UefiShellStartupLocation remote_mgmt.Systems.systems_list[0].bios.set_parameter("UefiShellStartupUrl", "http://10.3.222.88/deploy/startup.nsh") remote_mgmt.Systems.systems_list[0].set_parameter_json('{"Boot": {"BootSourceOverrideTarget": "UefiShell"}}') -remote_mgmt.Systems.systems_list[0].set_parameter_json('{"Boot": {"BootSourceOverrideEnabled" : "Once"}}') +remote_mgmt.Systems.systems_list[0].set_parameter_json('{"Boot": {"BootSourceOverrideEnabled" : "Continuous"}}') #Reset of the system is required to apply the changes remote_mgmt.Systems.systems_list[0].reset_system()