diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-12 23:27:59 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-15 22:43:03 +0100 |
commit | 333a2ad649c3417f070986835ecbf5777ca85fa5 (patch) | |
tree | dd2fad77dacc8f3183b7c14031dd1caf27311c8b /src/basic | |
parent | filesystems: slightly update common block device groups (diff) | |
download | systemd-333a2ad649c3417f070986835ecbf5777ca85fa5.tar.xz systemd-333a2ad649c3417f070986835ecbf5777ca85fa5.zip |
filesystems: add ceph to network file systems group
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/filesystems.c | 1 | ||||
-rw-r--r-- | src/basic/mountpoint-util.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/filesystems.c b/src/basic/filesystems.c index 2d7fd5d886..f33d2c458e 100644 --- a/src/basic/filesystems.c +++ b/src/basic/filesystems.c @@ -97,6 +97,7 @@ const FilesystemSet filesystem_sets[_FILESYSTEM_SET_MAX] = { .value = "afs\0" "cifs\0" + "ceph\0" "gfs\0" "gfs2\0" "ncpfs\0" diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index 803f36da8d..9dbe34ba4d 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -373,7 +373,6 @@ bool fstype_is_network(const char *fstype) { /* Filesystems not present in the internal database */ return STR_IN_SET(fstype, - "ceph", "davfs", "glusterfs", "lustre", |