From 07b08343d7b5dc20c4904da2caa994dc36210b6f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Fri, 12 Sep 2014 09:55:25 +0200
Subject: [PATCH] system: Produce a basic /etc/nsswitch.conf to honor
 /etc/hosts.

* gnu/system.scm (etc-directory): Produce nsswitch.conf.
---
 gnu/system.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/system.scm b/gnu/system.scm
index 393b8963358..b1445dcab74 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -291,6 +291,10 @@ (define* (etc-directory #:key
 /run/current-system/profile/bin/bash\n"))
        (issue      (text-file "issue" issue))
 
+       ;; For now, generate a basic config so that /etc/hosts is honored.
+       (nsswitch   (text-file "nsswitch.conf"
+                              "hosts: files dns\n"))
+
        ;; TODO: Generate bashrc from packages' search-paths.
        (bashrc    (text-file* "bashrc"  "
 export PS1='\\u@\\h \\w\\$ '
@@ -317,6 +321,7 @@ (define* (etc-directory #:key
                   ("pam.d" ,#~#$pam.d)
                   ("login.defs" ,#~#$login.defs)
                   ("issue" ,#~#$issue)
+                  ("nsswitch.conf" ,#~#$nsswitch)
                   ("skel" ,#~#$skel)
                   ("shells" ,#~#$shells)
                   ("profile" ,#~#$bashrc)
-- 
GitLab