Revert "[modules] work on #797 and #796"

This reverts commit daff029024.
This commit is contained in:
Philip 2017-09-14 08:10:34 -04:00
parent daff029024
commit 6560494bff
6 changed files with 7 additions and 8 deletions

View File

@ -111,7 +111,7 @@ def create_systemd_boot_conf(uuid, conf_path, kernel_line):
# - encrypted root sets cryptdevice_params
for partition in partitions:
has_luks = "luksMapperName" in partition
if partition["fs"].lower().replace("-","").replace("linux","") == "swap" and not has_luks:
if partition["fs"].lower().replace("-","") == "linuxswap" and not has_luks:
swap_uuid = partition["uuid"]
if partition["mountPoint"] == "/" and has_luks:

View File

@ -56,7 +56,6 @@ FS_MAP = {
"fat32": "vfat",
"linuxswap": "swap",
"linux-swap": "swap",
"swap": "swap",
}

View File

@ -60,10 +60,10 @@ def modify_grub_default(partitions, root_mount_point, distributor):
if have_dracut:
for partition in partitions:
has_luks = "luksMapperName" in partition
if partition["fs"].lower().replace("-","").replace("linux","") == "swap" and not has_luks:
if partition["fs"].lower().replace("-","") == "linuxswap" and not has_luks:
swap_uuid = partition["uuid"]
if (partition["fs"].lower().replace("-","").replace("linux","") == "swap" and has_luks):
if (partition["fs"].lower().replace("-","") == "linuxswap" and has_luks):
swap_outer_uuid = partition["luksUuid"]
swap_outer_mappername = partition["luksMapperName"]
@ -74,7 +74,7 @@ def modify_grub_default(partitions, root_mount_point, distributor):
else:
for partition in partitions:
has_luks = "luksMapperName" in partition
if partition["fs"].lower().replace("-","").replace("linux","") == "swap" and not has_luks:
if partition["fs"].lower().replace("-","") == "linuxswap" and not has_luks:
swap_uuid = partition["uuid"]
if (partition["mountPoint"] == "/" and has_luks):

View File

@ -114,7 +114,7 @@ def modify_mkinitcpio_conf(partitions, root_mount_point):
hooks.append("plymouth")
for partition in partitions:
if partition["fs"].lower().replace("-","").replace("linux","") == "swap":
if partition["fs"].lower().replace("-","") == "linuxswap":
swap_uuid = partition["uuid"]
if "luksMapperName" in partition:
openswap_hook = True

View File

@ -47,7 +47,7 @@ def run():
luks_root_device = partition["device"]
luks_root_passphrase = partition["luksPassphrase"]
elif "luksMapperName" in partition and\
(partition["mountPoint"] or partition["fs"].lower().replace("-","").replace("linux","") == "swap"):
(partition["mountPoint"] or partition["fs"].lower().replace("-","") == "linuxswap"):
additional_luks_devices.append((partition["device"],
partition["luksPassphrase"]))

View File

@ -30,7 +30,7 @@ def write_openswap_conf(partitions, root_mount_point, openswap_conf_path):
mountable_keyfile_device = ""
for partition in partitions:
if partition["fs"].lower().replace("-","").replace("linux","") == "swap" and "luksMapperName" in partition:
if partition["fs"].lower().replace("-","") == "linuxswap" and "luksMapperName" in partition:
swap_outer_uuid = partition["luksUuid"]
swap_mapper_name = partition["luksMapperName"]