guix-commits
[Top][All Lists]
Advanced

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

branch master updated: build: file-systems: Do not warn about file syste


From: guix-commits
Subject: branch master updated: build: file-systems: Do not warn about file system check for NFS.
Date: Tue, 03 Mar 2020 00:02:03 -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 85a7466  build: file-systems: Do not warn about file system check for 
NFS.
85a7466 is described below

commit 85a7466e22d345444f952b57346f4c09de020c1f
Author: Maxim Cournoyer <address@hidden>
AuthorDate: Mon Feb 24 11:08:42 2020 -0500

    build: file-systems: Do not warn about file system check for NFS.
    
    * gnu/build/file-systems.scm (check-file-system): Define a dummy checker
    procedure for NFS that always passes to prevent a warning from being 
emitted.
---
 gnu/build/file-systems.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index ee63755..902563b 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2019 Guillaume Le Vaillant <address@hidden>
 ;;; Copyright © 2019 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2019 David C. Trudgian <address@hidden>
+;;; Copyright © 2020 Maxim Cournoyer <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -581,6 +582,7 @@ were found."
      ((string-prefix? "btrfs" type) check-btrfs-file-system)
      ((string-suffix? "fat" type) check-fat-file-system)
      ((string-prefix? "jfs" type) check-jfs-file-system)
+     ((string-prefix? "nfs" type) (const 'pass))
      (else #f)))
 
   (if check-procedure



reply via email to

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