diff options
| author | Joseph Richey <joerichey@google.com> | 2022-04-08 23:43:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-08 23:43:01 -0700 |
| commit | ce8a5583c1cc2327cf65a048cfd1083225dad50e (patch) | |
| tree | 0b3563bf4855e1699fe0521d8fc189754724e089 /filesystem | |
| parent | 896549fa52002a65436625ad4fd7743b444f1135 (diff) | |
| parent | 8ac0e607c236e42df8943b9575da1579fe670b76 (diff) | |
Merge pull request #355 from google/supported-filesystems
Add lustre to allowed filesystems and update documentation
Diffstat (limited to 'filesystem')
| -rw-r--r-- | filesystem/filesystem.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem/filesystem.go b/filesystem/filesystem.go index 27bfa24..fcff574 100644 --- a/filesystem/filesystem.go +++ b/filesystem/filesystem.go @@ -393,7 +393,7 @@ func (m *Mount) isFscryptSetupAllowed() bool { return true } switch m.FilesystemType { - case "ext4", "f2fs", "ubifs", "btrfs", "ceph", "xfs": + case "ext4", "f2fs", "ubifs", "btrfs", "ceph", "xfs", "lustre": return true default: return false |