Skip to content

Commit

Permalink
Merge pull request #418 from vojtechtrefny/master_jfs-reiserfs-remove
Browse files Browse the repository at this point in the history
Remove support for labelling JFS and ReiserFS
  • Loading branch information
vojtechtrefny authored Nov 14, 2023
2 parents 17c0d23 + 8d249e0 commit 839841f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions blivetgui/dialogs/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

from blivet import devicefactory
from blivet.devicelibs import btrfs, lvm, crypto
from blivet.tasks.fslabeling import Ext2FSLabeling, FATFSLabeling, JFSLabeling, ReiserFSLabeling, XFSLabeling, NTFSLabeling
from blivet.tasks.fslabeling import Ext2FSLabeling, FATFSLabeling, XFSLabeling, NTFSLabeling

# ---------------------------------------------------------------------------- #

Expand Down Expand Up @@ -109,10 +109,6 @@ def is_label_valid(format_type, label):
return Ext2FSLabeling.label_format_ok(label)
elif format_type == "vfat":
return FATFSLabeling.label_format_ok(label)
elif format_type == "jfs":
return JFSLabeling.label_format_ok(label)
elif format_type == "raiserfs":
return ReiserFSLabeling.label_format_ok(label)
elif format_type == "xfs":
return XFSLabeling.label_format_ok(label)
elif format_type == "ntfs":
Expand Down

0 comments on commit 839841f

Please sign in to comment.