diff options
author | Brian J. Murrell <brian@interlinx.bc.ca> | 2016-10-31 23:48:00 -0400 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-11-01 04:48:00 +0100 |
commit | 67ae43665e7e03becba197e98df5b3ce40269567 (patch) | |
tree | 2eb204e131ef6e9f5ea9a57ba8c4109d11b396f9 /src/basic | |
parent | b17649ee5e9d620b752d17f783ea380b5111d060 (diff) |
Recognise Lustre as a remote file system (#4530)
Lustre is also a remote file system that wants the network to be up before it is mounted.
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/mount-util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c index 2985cc475a..c8f8022578 100644 --- a/src/basic/mount-util.c +++ b/src/basic/mount-util.c @@ -525,6 +525,7 @@ bool fstype_is_network(const char *fstype) { "glusterfs\0" "pvfs2\0" /* OrangeFS */ "ocfs2\0" + "lustre\0" ; const char *x; |