Skip to content
Snippets Groups Projects
Commit c0898c30 authored by Kevin Kofler's avatar Kevin Kofler Committed by Philip
Browse files

[grubcfg] Compare integers to integers, not strings.

target_env_call returns an integer, so do not compare its result to the
string "0".
parent 4a350353
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ def modify_grub_default(partitions, root_mount_point, distributor):
cryptdevice_params = []
if dracut_bin == "0":
if dracut_bin == 0:
for partition in partitions:
if partition["fs"] == "linuxswap":
swap_uuid = partition["uuid"]
......@@ -78,7 +78,7 @@ def modify_grub_default(partitions, root_mount_point, distributor):
if swap_uuid:
kernel_params.append("resume=UUID={!s}".format(swap_uuid))
if dracut_bin == "0" and swap_outer_uuid:
if dracut_bin == 0 and swap_outer_uuid:
kernel_params.append("rd.luks.uuid={!s}".format(swap_outer_uuid))
distributor_line = "GRUB_DISTRIBUTOR='{!s}'".format(distributor_replace)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment