From e39156196cd1f3e6af2f7125e38c98e82a41d713 Mon Sep 17 00:00:00 2001 From: Ondra Machacek Date: Mon, 29 Jan 2018 14:17:57 +0100 Subject: [PATCH] ovirt: Fix vms BIOS boot_menu attr compare (#35454) --- lib/ansible/modules/cloud/ovirt/ovirt_vms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/ovirt/ovirt_vms.py b/lib/ansible/modules/cloud/ovirt/ovirt_vms.py index bbd2ab8ad6c..8cec5ff5a2d 100644 --- a/lib/ansible/modules/cloud/ovirt/ovirt_vms.py +++ b/lib/ansible/modules/cloud/ovirt/ovirt_vms.py @@ -919,7 +919,7 @@ class VmsModule(BaseModule): equal(self.param('cpu_threads'), entity.cpu.topology.threads) and equal(self.param('type'), str(entity.type)) and equal(self.param('operating_system'), str(entity.os.type)) and - equal(self.param('boot_menu'), entity.boot.boot_menu.enabled) and + equal(self.param('boot_menu'), entity.bios.boot_menu.enabled) and equal(self.param('serial_console'), entity.console.enabled) and equal(self.param('usb_support'), entity.usb.enabled) and equal(self.param('sso'), True if entity.sso.methods else False) and