guix-commits
[Top][All Lists]
Advanced

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

01/03: nss: Remove '%compat' from the defaults.


From: Ludovic Courtès
Subject: 01/03: nss: Remove '%compat' from the defaults.
Date: Tue, 27 Mar 2018 17:26:21 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit f7a5cf7a2da9590fe64e85e6f263b11020e943aa
Author: Ludovic Courtès <address@hidden>
Date:   Tue Mar 27 23:06:03 2018 +0200

    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.
---
 gnu/system/nss.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

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



reply via email to

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