From: Kenneth D'souza Date: Mon, 30 Sep 2019 10:31:21 +0000 (+0530) Subject: Consider smb3 as remote filesystem X-Git-Tag: archive/raspbian/243-7+rpi1^2~43 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e4ebcd39795e5f13cb83e047ec2e02aba329d4f2;p=systemd.git 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) (cherry picked from commit 19a43dc38a136d2e95ae79ee1cd28335557216b9) Gbp-Pq: Name Consider-smb3-as-remote-filesystem.patch --- diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index cb8ddcce..74cf139a 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -298,6 +298,7 @@ bool fstype_is_network(const char *fstype) { return STR_IN_SET(fstype, "afs", "cifs", + "smb3", "smbfs", "sshfs", "ncpfs",