[fstab] Remove ssd_extra_mount_options from fstab module.

This looks to be a remnant from moving this to the mount module
which left an undefined variable. The mount options are now part
of the globalstorage and consumed here as mount_options_list.

FIXES #1980
This commit is contained in:
Dan Simmons 2022-06-07 22:24:56 -04:00
parent 9fdae8c76f
commit 70b83f5ca6

View File

@ -100,7 +100,7 @@ def disk_name_for_partition(partition):
class FstabGenerator(object): class FstabGenerator(object):
def __init__(self, partitions, root_mount_point, mount_options_list, def __init__(self, partitions, root_mount_point, mount_options_list,
ssd_extra_mount_options, crypttab_options, tmp_options): crypttab_options, tmp_options):
self.partitions = partitions self.partitions = partitions
self.root_mount_point = root_mount_point self.root_mount_point = root_mount_point
self.mount_options_list = mount_options_list self.mount_options_list = mount_options_list
@ -414,7 +414,6 @@ def run():
generator = FstabGenerator(partitions, generator = FstabGenerator(partitions,
root_mount_point, root_mount_point,
mount_options_list, mount_options_list,
ssd_extra_mount_options,
crypttab_options, crypttab_options,
tmp_options) tmp_options)