Skip to content

Commit

Permalink
Merge pull request #747 from slagle/kernel_args_str
Browse files Browse the repository at this point in the history
Check for AnsibleUnicode or str for edpm_kernel_args
  • Loading branch information
openshift-merge-bot[bot] authored Sep 10, 2024
2 parents 04e5759 + 506fbaa commit c21563b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/edpm_kernel/tasks/kernelargs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
when:
- cmdline is defined
- edpm_kernel_args is defined
- edpm_kernel_args | type_debug == "AnsibleUnicode"
- edpm_kernel_args | type_debug in ["AnsibleUnicode", "str"]
- cmdline is not regex( '^.*' ~ edpm_kernel_args ~ '\\s.*$' )
block:
# Leapp does not recognise grun entries starting other than GRUB
Expand Down

0 comments on commit c21563b

Please sign in to comment.