Skip to content
Snippets Groups Projects
Commit cd9bc112 authored by Alexander I. Grafov's avatar Alexander I. Grafov Committed by Ludovic Courtès
Browse files

system: Add fish, tcsh, and zsh to /etc/shells.


* gnu/system.scm (etc-directory)[shells]: Add fish, tcsh, and zsh file
  names to /etc/shells.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent 70408ccb
No related branches found
No related tags found
No related merge requests found
......@@ -415,11 +415,17 @@ (define* (etc-directory #:key
((pam.d (pam-services->directory pam-services))
(sudoers (text-file "sudoers" sudoers))
(login.defs (text-file "login.defs" "# Empty for now.\n"))
(shells (text-file "shells" ; used by xterm and others
;; /etc/shells is used by xterm and other programs. We don't check
;; whether these shells are installed, should be OK.
(shells (text-file "shells"
"\
/bin/sh
/run/current-system/profile/bin/sh
/run/current-system/profile/bin/bash\n"))
/run/current-system/profile/bin/bash
/run/current-system/profile/bin/fish
/run/current-system/profile/bin/tcsh
/run/current-system/profile/bin/zsh\n"))
(emacs (emacs-site-directory))
(issue (text-file "issue" issue))
(nsswitch (text-file "nsswitch.conf"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment