Skip to content

Commit

Permalink
Remove support for labelling JFS and ReiserFS
Browse files Browse the repository at this point in the history
Next version of Blivet is going to remove support for JFS and
ReiserFS.
  • Loading branch information
vojtechtrefny committed Nov 14, 2023
1 parent 17c0d23 commit 8d249e0
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 8d249e0

Please sign in to comment.