mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-25 08:28:22 -04:00
[fstab] Exclude zfs partitions from fstab
This commit is contained in:
parent
ebae698a6e
commit
3ebe695a23
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
Add a link
Reference in a new issue