Merge pull request #1981 from monetaryabyss/issue-1980

[fstab] Remove ssd_extra_mount_options from fstab module.
This commit is contained in:
dalto8 2022-06-08 19:35:19 +00:00 committed by GitHub
commit 056a5c29cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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