From 6c5fc571ba7b851e7b36b054fd428bf6ad779dcc Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 2 Nov 2023 22:05:04 -0700 Subject: README.md, errors.go: CephFS now supports fscrypt --- cmd/fscrypt/errors.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmd/fscrypt/errors.go') diff --git a/cmd/fscrypt/errors.go b/cmd/fscrypt/errors.go index 1e9c39a..1ccf544 100644 --- a/cmd/fscrypt/errors.go +++ b/cmd/fscrypt/errors.go @@ -230,6 +230,10 @@ func getErrorSuggestions(err error) string { if !util.IsKernelVersionAtLeast(4, 10) { return "ubifs encryption requires kernel v4.10 or later." } + case "ceph": + if !util.IsKernelVersionAtLeast(6, 6) { + return "CephFS encryption requires kernel v6.6 or later." + } } return "" case *filesystem.ErrNoCreatePermission: -- cgit v1.2.3