mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
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.
This commit is contained in:
parent
99e676db43
commit
85a7466e22
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019 David C. Trudgian <dave@trudgian.net>
|
;;; Copyright © 2019 David C. Trudgian <dave@trudgian.net>
|
||||||
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -581,6 +582,7 @@ (define check-procedure
|
||||||
((string-prefix? "btrfs" type) check-btrfs-file-system)
|
((string-prefix? "btrfs" type) check-btrfs-file-system)
|
||||||
((string-suffix? "fat" type) check-fat-file-system)
|
((string-suffix? "fat" type) check-fat-file-system)
|
||||||
((string-prefix? "jfs" type) check-jfs-file-system)
|
((string-prefix? "jfs" type) check-jfs-file-system)
|
||||||
|
((string-prefix? "nfs" type) (const 'pass))
|
||||||
(else #f)))
|
(else #f)))
|
||||||
|
|
||||||
(if check-procedure
|
(if check-procedure
|
||||||
|
|
Loading…
Reference in a new issue