Skip to content

Commit

Permalink
Fix ubuntu tests in template grub2_bootloader_argument
Browse files Browse the repository at this point in the history
  • Loading branch information
mpurg committed Feb 21, 2024
1 parent db56fb2 commit c2281b8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/bin/bash

# platform = multi_platform_fedora,multi_platform_ol,multi_platform_rhel
# platform = multi_platform_fedora,multi_platform_ol,multi_platform_rhel,multi_platform_ubuntu
{{%- if 'ubuntu' in product %}}
# packages = grub2
{{%- else %}}
# packages = grub2,grubby
{{%- endif %}}

source common.sh

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#!/bin/bash

# platform = multi_platform_all
{{%- if 'ubuntu' in product %}}
# packages = grub2
{{%- else %}}
# packages = grub2,grubby
{{%- endif %}}

{{%- if ARG_VARIABLE %}}
# variables = {{{ ARG_VARIABLE }}}=correct_value
{{%- set ARG_NAME_VALUE= ARG_NAME ~ "=correct_value" %}}
Expand Down

0 comments on commit c2281b8

Please sign in to comment.