diff options
Diffstat (limited to 'gnu/machine')
| -rw-r--r-- | gnu/machine/ssh.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/machine/ssh.scm b/gnu/machine/ssh.scm index b47ce7c2252..0be9ebbc0d7 100644 --- a/gnu/machine/ssh.scm +++ b/gnu/machine/ssh.scm | |||
| @@ -222,7 +222,8 @@ exist on the machine." | |||
| 222 | (not (member (file-system-type fs) | 222 | (not (member (file-system-type fs) |
| 223 | %pseudo-file-system-types)) | 223 | %pseudo-file-system-types)) |
| 224 | ;; Don't try to validate network file systems. | 224 | ;; Don't try to validate network file systems. |
| 225 | (not (string-prefix? "nfs" (file-system-type fs))) | 225 | (not (or (string-prefix? "nfs" (file-system-type fs)) |
| 226 | (string-prefix? "cifs" (file-system-type fs)))) | ||
| 226 | (not (memq 'bind-mount (file-system-flags fs))))) | 227 | (not (memq 'bind-mount (file-system-flags fs))))) |
| 227 | (operating-system-file-systems (machine-operating-system machine)))) | 228 | (operating-system-file-systems (machine-operating-system machine)))) |
| 228 | 229 | ||
