From a1e395b76292480649c1d94893af93c1262b2f5f Mon Sep 17 00:00:00 2001 From: Kenneth D'souza Date: Mon, 30 Sep 2019 16:01:21 +0530 Subject: [PATCH] Consider smb3 as remote filesystem Currently systemd will treat smb3 as local filesystem and cause can't boot failures. Add smb3 to the list of remote filesystems to fix this issue. Signed-off-by: Kenneth D'souza (cherry picked from commit ff7d6a740b0c6fa3be63d3908a0858730a0837c5) Resolves: #1811700 --- src/shared/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/util.c b/src/shared/util.c index ce6678eb38..3fb4492a81 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -1937,6 +1937,7 @@ bool fstype_is_network(const char *fstype) { static const char table[] = "afs\0" "cifs\0" + "smb3\0" "smbfs\0" "sshfs\0" "ncpfs\0"