From unknown Fri Jun 20 07:13:08 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#49129 <49129@debbugs.gnu.org> To: bug#49129 <49129@debbugs.gnu.org> Subject: Status: [PATCH] services: openssh: Replace 'without-password' by 'prohibit-password'. Reply-To: bug#49129 <49129@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:13:08 +0000 retitle 49129 [PATCH] services: openssh: Replace 'without-password' by 'pro= hibit-password'. reassign 49129 guix-patches submitter 49129 Brice Waegeneire severity 49129 normal tag 49129 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 20 06:13:19 2021 Received: (at submit) by debbugs.gnu.org; 20 Jun 2021 10:13:19 +0000 Received: from localhost ([127.0.0.1]:33113 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luuS2-0005S4-40 for submit@debbugs.gnu.org; Sun, 20 Jun 2021 06:13:19 -0400 Received: from lists.gnu.org ([209.51.188.17]:48060) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luuRx-0005Rt-DJ for submit@debbugs.gnu.org; Sun, 20 Jun 2021 06:13:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45214) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1luuRx-0004wi-6f for guix-patches@gnu.org; Sun, 20 Jun 2021 06:13:09 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:62341) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1luuRu-00060n-TH for guix-patches@gnu.org; Sun, 20 Jun 2021 06:13:08 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 9911640006 for ; Sun, 20 Jun 2021 10:13:03 +0000 (UTC) From: Brice Waegeneire To: guix-patches@gnu.org Subject: [PATCH] services: openssh: Replace 'without-password' by 'prohibit-password'. Date: Sun, 20 Jun 2021 12:13:01 +0200 Message-Id: <20210620101301.16601-1-brice@waegenei.re> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=217.70.183.194; envelope-from=brice@waegenei.re; helo=relay2-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.3 (/) For some time, OpenSSH's option 'PermitRootLogin' has deprecated the ambiguous argument 'without-password' with 'prohibit-password'. * doc/guix.texi (Network Services): Replace 'without-password' by 'prohibit-password'. * gnu/machine/digital-ocean.scm (guix-infect): Change system configuration to use 'prohibit-password'. * gnu/services/ssh.scm (openssh-configuration): Change comment to use 'prohibit-password'. (openssh-config-file): Add support for 'prohibit-password' to 'permit-root-login'. * gnu/tests/ganeti.scm (%ganeti-os): Replace 'without-password' by 'prohibit-password'. --- doc/guix.texi | 6 +++--- gnu/machine/digital-ocean.scm | 3 ++- gnu/services/ssh.scm | 6 ++++-- gnu/tests/ganeti.scm | 3 ++- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index efeb176e3d..66c6adc4f5 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -17070,7 +17070,7 @@ shell daemon, @command{sshd}. Its value must be an (service openssh-service-type (openssh-configuration (x11-forwarding? #t) - (permit-root-login 'without-password) + (permit-root-login 'prohibit-password) (authorized-keys `(("alice" ,(local-file "alice.pub")) ("bob" ,(local-file "bob.pub")))))) @@ -17104,7 +17104,7 @@ TCP port on which @command{sshd} listens for incoming connections. @item @code{permit-root-login} (default: @code{#f}) This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. -If it's the symbol @code{'without-password}, then root logins are +If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication. @item @code{allow-empty-passwords?} (default: @code{#f}) @@ -29333,7 +29333,7 @@ cluster node that supports multiple storage backends, and installs the ;; Ganeti uses SSH to communicate between nodes. (service openssh-service-type (openssh-configuration - (permit-root-login 'without-password))) + (permit-root-login 'prohibit-password))) (service ganeti-service-type (ganeti-configuration diff --git a/gnu/machine/digital-ocean.scm b/gnu/machine/digital-ocean.scm index 82383a8c7c..d97c300d18 100644 --- a/gnu/machine/digital-ocean.scm +++ b/gnu/machine/digital-ocean.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Jakob L. Kreuze +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -256,7 +257,7 @@ cat > /etc/bootstrap-config.scm << EOF (service openssh-service-type (openssh-configuration (log-level 'debug) - (permit-root-login 'without-password)))) + (permit-root-login 'prohibit-password)))) %base-services))) EOF # guix pull diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index 1891db0487..1017510dd5 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2019 Ricardo Wurmus ;;; Copyright © 2020 pinoaffe ;;; Copyright © 2020 Oleg Pykhalov +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -288,7 +289,7 @@ The other options should be self-descriptive." ;; integer (port-number openssh-configuration-port-number (default 22)) - ;; Boolean | 'without-password + ;; Boolean | 'prohibit-password (permit-root-login openssh-configuration-permit-root-login (default #f)) ;; Boolean @@ -441,7 +442,8 @@ of user-name/file-like tuples." #$(match (openssh-configuration-permit-root-login config) (#t "yes") (#f "no") - ('without-password "without-password"))) + ('without-password "prohibit-password") ; deprecated + ('prohibit-password "prohibit-password"))) (format port "PermitEmptyPasswords ~a\n" #$(if (openssh-configuration-allow-empty-passwords? config) "yes" "no")) diff --git a/gnu/tests/ganeti.scm b/gnu/tests/ganeti.scm index ff853a7149..19c26b86dd 100644 --- a/gnu/tests/ganeti.scm +++ b/gnu/tests/ganeti.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Marius Bakke . +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -65,7 +66,7 @@ (service openssh-service-type (openssh-configuration - (permit-root-login 'without-password))) + (permit-root-login 'prohibit-password))) (service ganeti-service-type (ganeti-configuration -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 20 06:28:50 2021 Received: (at submit) by debbugs.gnu.org; 20 Jun 2021 10:28:50 +0000 Received: from localhost ([127.0.0.1]:33122 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luuh8-00061n-EZ for submit@debbugs.gnu.org; Sun, 20 Jun 2021 06:28:50 -0400 Received: from lists.gnu.org ([209.51.188.17]:50434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luuh6-00061Y-7Q for submit@debbugs.gnu.org; Sun, 20 Jun 2021 06:28:48 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47214) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1luuh6-0007TN-0b for guix-patches@gnu.org; Sun, 20 Jun 2021 06:28:48 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:57990) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1luuh4-0000D3-1n for guix-patches@gnu.org; Sun, 20 Jun 2021 06:28:47 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=k5f5w3AJvB642 2kL5DaVCPAjV8GzKq+yxutjVNEzZD8=; h=date:in-reply-to:subject:cc:to: from:references; d=tobias.gr; b=ZC/IvHs+RWuGkowagYCbwsr40NZxRSLdVeqGsR cje+Esgs2tYmyCzNZdj3waNlBY2kGhnWwQVqvYpy0y+BN0DIXSBAJXe8oFM8Zdaly0QcjX 5Nnm9f3VyOzP6z/2NMedS3OpMvkUfmzpoLN/ciQlPnHdJ6s3jobsfXUMf2PgOkVpHWN3wr vUmYYXL6b0pTGAZsvbnLLT2KwM8VOu27/3UZaiAEoyY+LPSyMfMtlwI4SaryjesjtVBkHI BsSp3a0GM5Y4TeN5fUi+R8A446VhdGINu8C1fKkTtdHDynmZYqg+z0Wap4cvUHw3+m2wgV 693ml30CC/bjNji39kXfBUtA== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 524ac5db (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Sun, 20 Jun 2021 10:28:41 +0000 (UTC) References: <20210620101301.16601-1-brice@waegenei.re> From: Tobias Geerinckx-Rice To: Brice Waegeneire Subject: Re: [bug#49129] [PATCH] services: openssh: Replace 'without-password' by 'prohibit-password'. In-reply-to: <20210620101301.16601-1-brice@waegenei.re> BIMI-Selector: v=BIMI1; s=default; Date: Sun, 20 Jun 2021 12:28:53 +0200 Message-ID: <87v968lti2.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=2a02:c205:2020:6054::1; envelope-from=me@tobias.gr; helo=tobias.gr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: guix-patches@gnu.org, 49129@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Brice, Brice Waegeneire =E5=86=99=E9=81=93=EF=BC=9A > For some time, OpenSSH's option 'PermitRootLogin' has deprecated=20 > the > ambiguous argument 'without-password' with 'prohibit-password'. Some time indeed. Thanks. LGTM modulo: > + ('without-password "prohibit-password")=20 > ; deprecated Users won't ever see this comment. Using the symbol should print=20 a warning, likely using warn-about-deprecation from (guix=20 deprecation). Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYM8YZQ0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15tdUBAOwLA3uZi4esOFxyAKnmih0f8QUeoZcioP3tWRXQ JXIrAP9VuORsoAKQwJdHtEC5FRExCMZp5iJw91Um6C7laG87Dw== =62kR -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 20 09:16:13 2021 Received: (at 49129) by debbugs.gnu.org; 20 Jun 2021 13:16:13 +0000 Received: from localhost ([127.0.0.1]:33238 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luxJ2-0003oo-Ko for submit@debbugs.gnu.org; Sun, 20 Jun 2021 09:16:13 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:60325) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luxIy-0003o3-UM for 49129@debbugs.gnu.org; Sun, 20 Jun 2021 09:16:08 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 3490EC0002 for <49129@debbugs.gnu.org>; Sun, 20 Jun 2021 13:15:57 +0000 (UTC) From: Brice Waegeneire To: 49129@debbugs.gnu.org Subject: [PATCH v2] services: openssh: Replace 'without-password' by 'prohibit-password'. Date: Sun, 20 Jun 2021 15:15:55 +0200 Message-Id: <20210620131555.7961-1-brice@waegenei.re> X-Mailer: git-send-email 2.31.1 In-Reply-To: <87v968lti2.fsf@nckx> References: <87v968lti2.fsf@nckx> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 49129 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) For some time, OpenSSH's option 'PermitRootLogin' has deprecated the ambiguous argument 'without-password' with 'prohibit-password'. * doc/guix.texi (Network Services): Replace 'without-password' by 'prohibit-password'. * gnu/machine/digital-ocean.scm (guix-infect): Change system configuration to use 'prohibit-password'. * gnu/services/ssh.scm (openssh-configuration): Change comment to use 'prohibit-password'. (openssh-config-file): Add support for 'prohibit-password' to 'permit-root-login'. * gnu/tests/ganeti.scm (%ganeti-os): Replace 'without-password' by 'prohibit-password'. --- I added a depreciation warning but without the fancy colors as I wasn't able to use the common macros. doc/guix.texi | 6 +++--- gnu/machine/digital-ocean.scm | 3 ++- gnu/services/ssh.scm | 10 ++++++++-- gnu/tests/ganeti.scm | 3 ++- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index efeb176e3d..66c6adc4f5 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -17070,7 +17070,7 @@ shell daemon, @command{sshd}. Its value must be an (service openssh-service-type (openssh-configuration (x11-forwarding? #t) - (permit-root-login 'without-password) + (permit-root-login 'prohibit-password) (authorized-keys `(("alice" ,(local-file "alice.pub")) ("bob" ,(local-file "bob.pub")))))) @@ -17104,7 +17104,7 @@ TCP port on which @command{sshd} listens for incoming connections. @item @code{permit-root-login} (default: @code{#f}) This field determines whether and when to allow logins as root. If @code{#f}, root logins are disallowed; if @code{#t}, they are allowed. -If it's the symbol @code{'without-password}, then root logins are +If it's the symbol @code{'prohibit-password}, then root logins are permitted but not with password-based authentication. @item @code{allow-empty-passwords?} (default: @code{#f}) @@ -29333,7 +29333,7 @@ cluster node that supports multiple storage backends, and installs the ;; Ganeti uses SSH to communicate between nodes. (service openssh-service-type (openssh-configuration - (permit-root-login 'without-password))) + (permit-root-login 'prohibit-password))) (service ganeti-service-type (ganeti-configuration diff --git a/gnu/machine/digital-ocean.scm b/gnu/machine/digital-ocean.scm index 82383a8c7c..d97c300d18 100644 --- a/gnu/machine/digital-ocean.scm +++ b/gnu/machine/digital-ocean.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Jakob L. Kreuze +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -256,7 +257,7 @@ cat > /etc/bootstrap-config.scm << EOF (service openssh-service-type (openssh-configuration (log-level 'debug) - (permit-root-login 'without-password)))) + (permit-root-login 'prohibit-password)))) %base-services))) EOF # guix pull diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index 1891db0487..be97c1322f 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2019 Ricardo Wurmus ;;; Copyright © 2020 pinoaffe ;;; Copyright © 2020 Oleg Pykhalov +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -288,7 +289,7 @@ The other options should be self-descriptive." ;; integer (port-number openssh-configuration-port-number (default 22)) - ;; Boolean | 'without-password + ;; Boolean | 'prohibit-password (permit-root-login openssh-configuration-permit-root-login (default #f)) ;; Boolean @@ -441,7 +442,12 @@ of user-name/file-like tuples." #$(match (openssh-configuration-permit-root-login config) (#t "yes") (#f "no") - ('without-password "without-password"))) + ('without-password + (format (current-error-port) "warning: Option \ +'without-password for openssh-configuration-permit-root-login field is \ +deprecated. Please use 'prohibit-password instead.\n") + "prohibit-password") + ('prohibit-password "prohibit-password"))) (format port "PermitEmptyPasswords ~a\n" #$(if (openssh-configuration-allow-empty-passwords? config) "yes" "no")) diff --git a/gnu/tests/ganeti.scm b/gnu/tests/ganeti.scm index ff853a7149..19c26b86dd 100644 --- a/gnu/tests/ganeti.scm +++ b/gnu/tests/ganeti.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Marius Bakke . +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -65,7 +66,7 @@ (service openssh-service-type (openssh-configuration - (permit-root-login 'without-password))) + (permit-root-login 'prohibit-password))) (service ganeti-service-type (ganeti-configuration -- 2.31.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 20 10:51:01 2021 Received: (at 49129-done) by debbugs.gnu.org; 20 Jun 2021 14:51:01 +0000 Received: from localhost ([127.0.0.1]:34787 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luymr-0006bB-0d for submit@debbugs.gnu.org; Sun, 20 Jun 2021 10:51:01 -0400 Received: from tobias.gr ([80.241.217.52]:48942) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1luymo-0006az-PJ for 49129-done@debbugs.gnu.org; Sun, 20 Jun 2021 10:50:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=2018; bh=l2mGLyQ/BW30u NrZXUlkUo0OlNLCjYp8UzDi2PNRifI=; h=date:in-reply-to:subject:cc:to: from:references; d=tobias.gr; b=YfOnzmzZcepFUH93mNar75Y66nocJyGHNERtZE uPL15W+CxszpSQuo46h75TirGkgtyT3dtnoUqR+aM4e0Sp98P4xScSvMRsoMGXfgLi8/Aa mQwMfApWeoyda7uDo79ZbbKRd01LklCsgvB6//7ashv0L461ElhaVNHCfSMsHugputFHrD qbV6jpAiRKGkwKOefOi2PV4LHUQ3Vnm41wRe17NL/I0O36FMlbsuu8MwC2Z8TA88KGo0XL cDZTexRAxjPZQuzuJH6BqvMZkuyhOXcmqjA2PKd9GncMtodJqRnjIt+2iVwJUcun/b6nD3 Fr2W6i84kORqtxM0r6IzV81w== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 2935fe2b (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO); Sun, 20 Jun 2021 14:50:55 +0000 (UTC) References: <87v968lti2.fsf@nckx> <20210620131555.7961-1-brice@waegenei.re> From: Tobias Geerinckx-Rice To: Brice Waegeneire Subject: Re: [bug#49129] [PATCH v2] services: openssh: Replace 'without-password' by 'prohibit-password'. In-reply-to: <20210620131555.7961-1-brice@waegenei.re> BIMI-Selector: v=BIMI1; s=default; Date: Sun, 20 Jun 2021 16:51:00 +0200 Message-ID: <87sg1clhd7.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 49129-done Cc: 49129-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Brice Waegeneire =E5=86=99=E9=81=93=EF=BC=9A > I added a depreciation warning but without the fancy colors as I=20 > wasn't able > to use the common macros. Thanks for trying! Getting source-properties out of CONFIG is=20 also beyond my ken. Are there any? Anyway, 'without-password is a unique string that occurs in the=20 user's system.scm by definition, so they can just search for it. I changed this to use warn-about-deprecation and pushed the result=20 as ef3f38ea0027f48feb6a29df131ac58bfbb46b7d. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCYM9V1A0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15ErcBAPFH4gb7/p2sa3msv09oSJOoIw9x4+KPa9/7/M1w N8c6AQD4BmZeakZ9Vu4EdvIt2t1Sa34vYCok80qo+DGwdkB6BA== =XW8I -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 20 07:13:08 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 19 Jul 2021 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator