guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: scripts: system: Do not validate network file sys


From: guix-commits
Subject: branch master updated: scripts: system: Do not validate network file systems.
Date: Tue, 18 Feb 2020 12:20:23 -0500

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new adbdf18  scripts: system: Do not validate network file systems.
adbdf18 is described below

commit adbdf188c28c503a9c875b793bc88548d3cd702f
Author: Maxim Cournoyer <address@hidden>
AuthorDate: Mon Feb 10 15:06:50 2020 -0500

    scripts: system: Do not validate network file systems.
    
    Fixes <https://bugs.gnu.org/39551>.
    
    * guix/scripts/system.scm (check-file-system-availability): Ignore file
    systems of the NFS type.
---
 guix/scripts/system.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index e69a3b6..b5e3a56 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -571,6 +571,8 @@ any, are available.  Raise an error if they're not."
               (and (file-system-mount? fs)
                    (not (member (file-system-type fs)
                                 %pseudo-file-system-types))
+                   ;; Don't try to validate network file systems.
+                   (not (string-prefix? "nfs" (file-system-type fs)))
                    (not (memq 'bind-mount (file-system-flags fs)))))
             file-systems))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]