From patchwork Thu Feb 3 20:55:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danny Milosavljevic X-Patchwork-Id: 36964 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id B991F27BBEA; Thu, 3 Feb 2022 21:39:29 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, SPF_HELO_PASS autolearn=unavailable autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 918B727BBE9 for ; Thu, 3 Feb 2022 21:39:29 +0000 (GMT) Received: from localhost ([::1]:58014 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nFjpA-0004sL-OK for patchwork@mira.cbaines.net; Thu, 03 Feb 2022 16:39:28 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44922) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nFj9T-00036J-LU for guix-patches@gnu.org; Thu, 03 Feb 2022 15:56:27 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:35933) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1nFj98-000160-Vn for guix-patches@gnu.org; Thu, 03 Feb 2022 15:56:20 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1nFj98-0002gt-Vb for guix-patches@gnu.org; Thu, 03 Feb 2022 15:56:02 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#53763] [PATCH 3/3] agetty-shepherd-service: Rename console agetty to "term-console" for clarity. Resent-From: dannym@scratchpost.org Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 03 Feb 2022 20:56:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 53763 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 53763@debbugs.gnu.org Cc: Danny Milosavljevic Received: via spool by 53763-submit@debbugs.gnu.org id=B53763.164392173710275 (code B ref 53763); Thu, 03 Feb 2022 20:56:02 +0000 Received: (at 53763) by debbugs.gnu.org; 3 Feb 2022 20:55:37 +0000 Received: from localhost ([127.0.0.1]:58057 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nFj8j-0002ff-Fa for submit@debbugs.gnu.org; Thu, 03 Feb 2022 15:55:37 -0500 Received: from dd30410.kasserver.com ([85.13.145.193]:38790) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nFj8c-0002f8-8H for 53763@debbugs.gnu.org; Thu, 03 Feb 2022 15:55:35 -0500 Received: from dayas.lan (84-115-234-128.cable.dynamic.surfer.at [84.115.234.128]) by dd30410.kasserver.com (Postfix) with ESMTPSA id 076561120D87; Thu, 3 Feb 2022 21:55:29 +0100 (CET) From: dannym@scratchpost.org Date: Thu, 3 Feb 2022 21:55:21 +0100 Message-Id: <20220203205521.25145-3-dannym@scratchpost.org> X-Mailer: git-send-email 2.34.0 In-Reply-To: <20220203205521.25145-1-dannym@scratchpost.org> References: <20220203205243.25095-1-dannym@scratchpost.org> <20220203205521.25145-1-dannym@scratchpost.org> MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches From: Danny Milosavljevic * gnu/services/base.scm (agetty-shepherd-service)[provision]: Rename console agetty to "term-console". --- gnu/services/base.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/base.scm b/gnu/services/base.scm index 028426c3f8..12a3ef2e93 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -931,7 +931,7 @@ (define agetty-shepherd-service (list (shepherd-service (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