Skip to content
Snippets Groups Projects
Commit b1bfa268 authored by Guido Gunther's avatar Guido Gunther :zzz:
Browse files

Revert "Don't pass any filesystem flags for f2fs"

This reverts commit 3650264e.

We want that as a patch in d/patches/
parent 005414ca
No related branches found
No related tags found
No related merge requests found
......@@ -182,7 +182,7 @@ class Filesystem(Base):
def get_mount_flags(fstype):
"""Return the fstab mount flags for a given file system type."""
flags = ['errors=remount-ro']
if fstype in ['btrfs', 'f2fs']:
if fstype == 'btrfs':
flags = []
return ','.join(flags) or 'defaults'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment