From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1emI1H-0006Yh-0t for guix-patches@gnu.org; Thu, 15 Feb 2018 06:48:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1emI1C-0002H3-I1 for guix-patches@gnu.org; Thu, 15 Feb 2018 06:48:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35796) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1emI1C-0002Gx-EC for guix-patches@gnu.org; Thu, 15 Feb 2018 06:48:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1emI1C-0000gC-7X for guix-patches@gnu.org; Thu, 15 Feb 2018 06:48:02 -0500 Subject: [bug#30464] [PATCH 2/2] services: agetty-shepherd-service: Default to providing 'term-console instead of 'term-auto . Resent-Message-ID: From: Danny Milosavljevic Date: Thu, 15 Feb 2018 12:47:42 +0100 Message-Id: <20180215114742.663-2-dannym@scratchpost.org> In-Reply-To: <20180215114742.663-1-dannym@scratchpost.org> References: <20180215114256.551-1-dannym@scratchpost.org> <20180215114742.663-1-dannym@scratchpost.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30464@debbugs.gnu.org * gnu/services/base.scm (agetty-shepherd-service): Default to providing 'term-console instead of 'term-auto . --- gnu/services/base.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 29ae5fca3..4ab83d1d2 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -937,7 +937,8 @@ to use as the tty. This is primarily useful for headless systems." (shepherd-service (modules '((ice-9 match) (gnu build linux-boot))) (documentation "Run agetty on a tty.") - (provision (list (symbol-append 'term- (string->symbol (or tty "auto"))))) + (provision (list (symbol-append 'term- (string->symbol + (or tty "console"))))) ;; Since the login prompt shows the host name, wait for the 'host-name' ;; service to be done. Also wait for udev essentially so that the tty