mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[fstab] Exclude zfs partitions from fstab
This commit is contained in:
parent
af4b87a4cc
commit
b6692341e7
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ class FstabGenerator(object):
|
|||
dct = self.generate_fstab_line_info(mount_entry)
|
||||
if dct:
|
||||
self.print_fstab_line(dct, file=fstab_file)
|
||||
else:
|
||||
elif partition["fs"] != "zfs": # zfs partitions don't need an entry in fstab
|
||||
dct = self.generate_fstab_line_info(partition)
|
||||
if dct:
|
||||
self.print_fstab_line(dct, file=fstab_file)
|
||||
|
|
Loading…
Add table
Reference in a new issue