From 9038298cbf645cc85ab85e5fe47cab9737a15c50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 19 Feb 2014 21:30:16 +0100 Subject: [PATCH] gnu: Add /etc/shells. * gnu/system.scm (etc-directory): Add /etc/shells. --- gnu/system.scm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnu/system.scm b/gnu/system.scm index e6346106a2..d28738140f 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -227,6 +227,11 @@ directories or regular files." (group (group-file groups)) (pam.d (pam-services->directory pam-services)) (login.defs (text-file "login.defs" "# Empty for now.\n")) + (shells (text-file "shells" ; used by xterm and others + "\ +/bin/sh +/run/current-system/bin/sh +/run/current-system/bin/bash\n")) (issue (text-file "issue" " This is an alpha preview of the GNU system. Welcome. @@ -260,6 +265,7 @@ alias ll='ls -l' ("pam.d" ,(derivation->output-path pam.d)) ("login.defs" ,login.defs) ("issue" ,issue) + ("shells" ,shells) ("profile" ,(derivation->output-path bashrc)) ("localtime" ,tz-file) ("passwd" ,passwd)