Skip to content

Commit

Permalink
ovirt_host: Fix kernel_params elemets (#608)
Browse files Browse the repository at this point in the history
* ovirt_host: Fix kernel_params elemets

* Add changelog
  • Loading branch information
mnecas authored Oct 17, 2022
1 parent c1fece4 commit 3717ac9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- ovirt_host - Fix kernel_params elemets type (https://github.com/oVirt/ovirt-ansible-collection/pull/608).
4 changes: 2 additions & 2 deletions plugins/modules/ovirt_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
to be I(reinstalled) successfully and then to be I(rebooted) for kernel boot parameters
to be applied."
type: list
elements: dict
elements: str
hosted_engine:
description:
- "If I(deploy) it means this host should deploy also hosted engine
Expand Down Expand Up @@ -513,7 +513,7 @@ def main():
reboot_after_installation=dict(default=None, type='bool'),
timeout=dict(default=600, type='int'),
override_display=dict(default=None),
kernel_params=dict(default=None, type='list', elements='dict'),
kernel_params=dict(default=None, type='list', elements='str'),
hosted_engine=dict(default=None, choices=['deploy', 'undeploy']),
power_management_enabled=dict(default=None, type='bool'),
activate=dict(default=True, type='bool'),
Expand Down

0 comments on commit 3717ac9

Please sign in to comment.