nss: Remove '%compat' from the defaults.

* gnu/system/nss.scm (%compat): Add comment.
(<name-service-switch>)[group, password, shadow]: Remove %COMPAT from
the default value.
master
Ludovic Courtès 2018-03-27 23:06:03 +02:00
parent 75176f1b94
commit f7a5cf7a2d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015, 2018 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -93,6 +93,8 @@
;;; ;;;
(define %compat (define %compat
;; Note: Starting from version 2.26, libc no longer provides libnss_compat
;; so this specification has become useless.
(name-service (name-service
(name "compat") (name "compat")
(reaction (lookup-specification (not-found => return))))) (reaction (lookup-specification (not-found => return)))))
@ -124,7 +126,7 @@
(ethers name-service-switch-ethers (ethers name-service-switch-ethers
(default '())) (default '()))
(group name-service-switch-group (group name-service-switch-group
(default (list %compat %files))) (default (list %files)))
(gshadow name-service-switch-gshadow (gshadow name-service-switch-gshadow
(default '())) (default '()))
(hosts name-service-switch-hosts (hosts name-service-switch-hosts
@ -136,7 +138,7 @@
(networks name-service-switch-networks (networks name-service-switch-networks
(default (list %files %dns))) (default (list %files %dns)))
(password name-service-switch-password (password name-service-switch-password
(default (list %compat %files))) (default (list %files)))
(public-key name-service-switch-public-key (public-key name-service-switch-public-key
(default '())) (default '()))
(rpc name-service-switch-rpc (rpc name-service-switch-rpc
@ -144,7 +146,7 @@
(services name-service-switch-services (services name-service-switch-services
(default '())) (default '()))
(shadow name-service-switch-shadow (shadow name-service-switch-shadow
(default (list %compat %files)))) (default (list %files))))
(define %default-nss (define %default-nss
;; Default NSS configuration. ;; Default NSS configuration.