Skip to content

Commit

Permalink
ovirt: Fix vms BIOS boot_menu attr compare (ansible#35454)
Browse files Browse the repository at this point in the history
  • Loading branch information
machacekondra authored and ansibot committed Jan 29, 2018
1 parent cb96f8a commit e391561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/cloud/ovirt/ovirt_vms.py
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ def update_check(self, entity):
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
Expand Down

0 comments on commit e391561

Please sign in to comment.