diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-13 12:04:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-13 12:04:55 +0200 |
commit | 0081410da011228ce0eef83f50b13bf70932fd3f (patch) | |
tree | a27d52d4e2658231a5809e43de2848c754539e33 /gnu/system | |
parent | 82aa2a28799f02e1a610d96bc592042c5e3786e4 (diff) | |
download | guix-0081410da011228ce0eef83f50b13bf70932fd3f.tar guix-0081410da011228ce0eef83f50b13bf70932fd3f.tar.gz |
Revert "services: 'mingetty-service' no longer takes monadic values."
This reverts commit daa48c31797b27e3a0991d0db7406c951ebc86df.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/linux.scm b/gnu/system/linux.scm index ac5005ebd1..7461a4a61f 100644 --- a/gnu/system/linux.scm +++ b/gnu/system/linux.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -136,7 +136,7 @@ dumped in /etc/pam.d/NAME, where NAME is the name of SERVICE." (lambda* (name #:key allow-empty-passwords? motd) "Return a standard Unix-style PAM service for NAME. When ALLOW-EMPTY-PASSWORDS? is true, allow empty passwords. When MOTD is true, it -should be a file-like object used as the message-of-the-day." +should be the name of a file used as the message-of-the-day." ;; See <http://www.linux-pam.org/Linux-PAM-html/sag-configuration-example.html>. (let ((name* name)) (pam-service |