From unknown Mon Jun 23 13:08:05 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#69633 <69633@debbugs.gnu.org> To: bug#69633 <69633@debbugs.gnu.org> Subject: Status: [PATCH v2] gnu: services: postgresql: Don't initdb when directory exists Reply-To: bug#69633 <69633@debbugs.gnu.org> Date: Mon, 23 Jun 2025 20:08:05 +0000 retitle 69633 [PATCH v2] gnu: services: postgresql: Don't initdb when direc= tory exists reassign 69633 guix-patches submitter 69633 Dale Mellor severity 69633 normal tag 69633 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 08 06:51:55 2024 Received: (at submit) by debbugs.gnu.org; 8 Mar 2024 11:51:56 +0000 Received: from localhost ([127.0.0.1]:56918 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riYlX-00048R-7Z for submit@debbugs.gnu.org; Fri, 08 Mar 2024 06:51:55 -0500 Received: from lists.gnu.org ([209.51.188.17]:56504) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riYlN-00047z-2u for submit@debbugs.gnu.org; Fri, 08 Mar 2024 06:51:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1riYkq-00080V-PS for guix-patches@gnu.org; Fri, 08 Mar 2024 06:51:12 -0500 Received: from [195.15.247.228] (helo=rdmp.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1riYkp-00064c-8n for guix-patches@gnu.org; Fri, 08 Mar 2024 06:51:12 -0500 Received: from [127.0.0.1] (helo=localhost.localdomain) by rdmp.org with esmtp (Exim 4.96.1) (envelope-from ) id 1riYkA-0004q8-1C; Fri, 08 Mar 2024 11:51:06 +0000 From: Dale Mellor To: 36451@debbugs.gnu.org Subject: [PATCH v2] gnu: services: postgresql: Don't initdb when directory exists Date: Fri, 8 Mar 2024 11:51:01 +0000 Message-ID: <20240308115101.2047407-1-guix-devel-0brg6b@rdmp.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 195.15.247.228 (failed) Received-SPF: pass client-ip=195.15.247.228; envelope-from=guix-devel-0brg6b@rdmp.org; helo=rdmp.org X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit Cc: Dale Mellor , guix-patches@gnu.org, Robert Vollmert 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.3 (--) From: Robert Vollmert * gnu/services/databases.scm (postgresql-activation): Check if directory exists. -------------- Dale Mellor: - Modified to make patch apply to head of current master branch. - Verified working, does not break an existing system. - Code change is clean. Reviewed-by: Dale Mellor --- gnu/services/databases.scm | 68 ++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 33 deletions(-) diff --git a/gnu/services/databases.scm b/gnu/services/databases.scm index 580031cb423..cb85d18e214 100644 --- a/gnu/services/databases.scm +++ b/gnu/services/databases.scm @@ -235,20 +235,7 @@ (define postgresql-activation (use-modules (guix build utils) (ice-9 match)) - (let ((user (getpwnam "postgres")) - (initdb (string-append - #$(final-postgresql postgresql - extension-packages) - "/bin/initdb")) - (initdb-args - (append - (if #$locale - (list (string-append "--locale=" #$locale)) - '())))) - ;; Create db state directory. - (mkdir-p #$data-directory) - (chown #$data-directory (passwd:uid user) (passwd:gid user)) - + (let ((user (getpwnam "postgres"))) ;; Create the socket directory. (let ((socket-directory #$(postgresql-config-file-socket-directory config-file))) @@ -261,25 +248,40 @@ (define postgresql-activation (mkdir-p #$log-directory) (chown #$log-directory (passwd:uid user) (passwd:gid user))) - ;; Drop privileges and init state directory in a new - ;; process. Wait for it to finish before proceeding. - (match (primitive-fork) - (0 - ;; Exit with a non-zero status code if an exception is thrown. - (dynamic-wind - (const #t) - (lambda () - (setgid (passwd:gid user)) - (setuid (passwd:uid user)) - (primitive-exit - (apply system* - initdb - "-D" - #$data-directory - initdb-args))) - (lambda () - (primitive-exit 1)))) - (pid (waitpid pid)))))))) + (unless (file-exists? #$data-directory) + (let ((initdb (string-append + #$(final-postgresql postgresql + extension-packages) + "/bin/initdb")) + (initdb-args + (append + (if #$locale + (list (string-append "--locale=" #$locale)) + '())))) + ;; Create db state directory. + (mkdir-p #$data-directory) + (chown #$data-directory (passwd:uid user) (passwd:gid user)) + + ;; Drop privileges and init state directory in a new + ;; process. Wait for it to finish before proceeding. + (match (primitive-fork) + (0 + ;; Exit with a non-zero status code if an exception is + ;; thrown. + (dynamic-wind + (const #t) + (lambda () + (setgid (passwd:gid user)) + (setuid (passwd:uid user)) + (primitive-exit + (apply system* + initdb + "-D" + #$data-directory + initdb-args))) + (lambda () + (primitive-exit 1)))) + (pid (waitpid pid)))))))))) (define postgresql-shepherd-service (match-lambda -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 08 06:57:13 2024 Received: (at control) by debbugs.gnu.org; 8 Mar 2024 11:57:13 +0000 Received: from localhost ([127.0.0.1]:56925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riYqf-0004Gy-B8 for submit@debbugs.gnu.org; Fri, 08 Mar 2024 06:57:13 -0500 Received: from [195.15.247.228] (port=12250 helo=rdmp.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1riYqd-0004Gk-6n for control@debbugs.gnu.org; Fri, 08 Mar 2024 06:57:11 -0500 Received: from [127.0.0.1] (helo=[IPv6:::1]) by rdmp.org with esmtp (Exim 4.96.1) (envelope-from ) id 1riYpR-0004qU-0W for control@debbugs.gnu.org; Fri, 08 Mar 2024 11:56:33 +0000 Message-ID: <2e13b61ee89235a8d3b28d5b3d04763eb0868fc0.camel@rdmp.org> Subject: From: Dale Mellor To: control Date: Fri, 08 Mar 2024 11:56:33 +0000 Organization: DM Bespoke Computer Solutions Ltd Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 3.3 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: merge 36451 69633 Content analysis details: (3.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS 2.0 BLANK_SUBJECT Subject is present but empty -0.0 T_SCC_BODY_TEXT_LINE No description available. X-Debbugs-Envelope-To: control 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.3 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: merge 36451 69633 Content analysis details: (2.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 1.3 RDNS_NONE Delivered to internal network by a host with no rDNS 2.0 BLANK_SUBJECT Subject is present but empty -0.0 T_SCC_BODY_TEXT_LINE No description available. -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager merge 36451 69633 From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 13 07:04:17 2024 Received: (at submit) by debbugs.gnu.org; 13 Mar 2024 11:04:17 +0000 Received: from localhost ([127.0.0.1]:44779 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rkMPA-0005JE-QC for submit@debbugs.gnu.org; Wed, 13 Mar 2024 07:04:17 -0400 Received: from lists.gnu.org ([209.51.188.17]:47960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rkMP8-0005J3-C4 for submit@debbugs.gnu.org; Wed, 13 Mar 2024 07:04:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rkMO3-0005tO-M4 for guix-patches@gnu.org; Wed, 13 Mar 2024 07:03:24 -0400 Received: from mira.cbaines.net ([212.71.252.8]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rkMNz-00007e-12 for guix-patches@gnu.org; Wed, 13 Mar 2024 07:03:05 -0400 Received: from localhost (unknown [212.132.255.10]) by mira.cbaines.net (Postfix) with ESMTPSA id C0E0927BBE2; Wed, 13 Mar 2024 11:02:56 +0000 (GMT) Received: from felis (localhost.lan [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 7fbaf9f9; Wed, 13 Mar 2024 11:02:56 +0000 (UTC) References: <20240308115101.2047407-1-guix-devel-0brg6b@rdmp.org> User-agent: mu4e 1.10.8; emacs 29.1 From: Christopher Baines To: Dale Mellor Subject: Re: [bug#69633] [PATCH v2] gnu: services: postgresql: Don't initdb when directory exists Date: Wed, 13 Mar 2024 11:01:03 +0000 In-reply-to: <20240308115101.2047407-1-guix-devel-0brg6b@rdmp.org> Message-ID: <8734suwg0x.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Received-SPF: pass client-ip=212.71.252.8; envelope-from=mail@cbaines.net; helo=mira.cbaines.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 36451@debbugs.gnu.org, guix-patches@gnu.org, 69633@debbugs.gnu.org, rob@vllmrt.net 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 Dale Mellor writes: > From: Robert Vollmert > > * gnu/services/databases.scm (postgresql-activation): Check if > directory exists. > > -------------- > Dale Mellor: > > - Modified to make patch apply to head of current master branch. > - Verified working, does not break an existing system. > - Code change is clean. I think what I'm missing here is why this change is being made? I think the PostgreSQL service works at the moment, so what does this change mean? --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmXxh95fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xe6TQ/9E3ToIgx8OI6xX1GUWo+bjaV+uEnyCEEu ZekVIba7Sj+mSNI0T9/8BXhboHVQMfyLeG+Z34KO4JxHIZ5XtC2E2r2iYRAQibln vfc0pV1rw/15CBPRVqLcgVS2HnOn7gPqVh0zEPA6QMc7DFqvpGVd2V8D444TPtWf j+9kTIh95cyJ7t99n2aJe4CEyef3hJVo2e+8iLJu8nVJyWwXSgjBA0X+AdDx/Gev XWeAMxlyORrBBdF6FB7U+9xbKRGHkqNznM08mDoVGsc2RxZYKNNrb5vR2XiLiDJ2 quOlrsdgG/eT//szvhZB4MKdoEMvI/9g7ExiHdxCRJCK9RpjeSgtK7nZaEWmL4ub KlI7AiO1rwFC/8q1RXvwT+IlURSRrQ+iGmupik0Gud09jyc1X5c1HAmyKMKSxXDY I53CPsibPZHO2lywtznMHf7aXgYS8Zvs+GX/jjbW+E/mawFA3acyVYxA8CYwMSzV klFz246WTeWE4mLY5pS8pPCq7+SQiUYx77By5fNCns4oQ4+Dg0FOkXFWMRCWyG48 xephCF5JG7oi9uCGjk17th2zywbriUDkD1xuYDahZy+Dcqz+uXwkIMGuFE8Mh1uH tfLgviqpC9fzif75Nv4b4vEIXb2Is5nCvSopmE+chNK+aF+M2kpH70hjhZ92bwvl eXM8jCR9F80= =eh2h -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 29 18:15:39 2024 Received: (at 69633-done) by debbugs.gnu.org; 29 Mar 2024 22:15:40 +0000 Received: from localhost ([127.0.0.1]:43550 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqKVf-0003J3-GM for submit@debbugs.gnu.org; Fri, 29 Mar 2024 18:15:39 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52792) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rqKVd-0003IH-8G; Fri, 29 Mar 2024 18:15:38 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rqKVW-0000hJ-1r; Fri, 29 Mar 2024 18:15:30 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=lOKDdJ+cX89YZDeFAPcXrkl3wBm/iGJ88Y6JhGq3k6k=; b=ZxUs7818ikOEuDc5ja4k 5oTl1qnGavEj0gxms66yNw5OjN/zSm1dnVCW9otEkpwV0SPKElZF+VHcpCmhVEm42Ou+sHvixvD2P r8A+4Kpsluf4o4WwZFBvsPz/5dW+YXXfzxuCT/z46MP/FXOpiVoWp9VZ76E1IVfOLUlAuU6hZw45N j2z8FJjaSJYR8Hc8bIOB5ud8ahMY/wVYiQqG5YbjAQVPF/c1MQNQ0QwD3GmIE+GuEMZbU2Vm4i5cc CcaMl0Bcq/Ytrd46qJVBL7C24OqGidXLVyRC6qjnTwNqOEG9V83a8/C1B1FW7mVSbHGwzPdtcmktO 76YiNiIA6WQxJg==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Dale Mellor Subject: Re: bug#69633: [PATCH v2] gnu: services: postgresql: Don't initdb when directory exists In-Reply-To: <20240308115101.2047407-1-guix-devel-0brg6b@rdmp.org> (Dale Mellor's message of "Fri, 8 Mar 2024 11:51:01 +0000") References: <20190630205642.54866-1-rob@vllmrt.net> <20240308115101.2047407-1-guix-devel-0brg6b@rdmp.org> Date: Fri, 29 Mar 2024 23:15:27 +0100 Message-ID: <87wmpkfzwg.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 69633-done Cc: 36451-done@debbugs.gnu.org, 69633-done@debbugs.gnu.org, rob@vllmrt.net 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: -3.3 (---) Hi, Dale Mellor skribis: > From: Robert Vollmert > > * gnu/services/databases.scm (postgresql-activation): Check if > directory exists. Finally applied, thank you! Ludo=E2=80=99. From unknown Mon Jun 23 13:08:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 27 Apr 2024 11:24:34 +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 From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 06 12:15:04 2024 Received: (at control) by debbugs.gnu.org; 6 Dec 2024 17:15:05 +0000 Received: from localhost ([127.0.0.1]:44154 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tJbuy-0003xP-J3 for submit@debbugs.gnu.org; Fri, 06 Dec 2024 12:15:04 -0500 Received: from mail-qv1-f67.google.com ([209.85.219.67]:51641) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tJbuw-0003xA-2i for control@debbugs.gnu.org; Fri, 06 Dec 2024 12:15:02 -0500 Received: by mail-qv1-f67.google.com with SMTP id 6a1803df08f44-6d8843c44cfso25832196d6.3 for ; Fri, 06 Dec 2024 09:15:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1733505241; x=1734110041; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=7/24orPg51totydxWKxshLpDKZ8xGjsdaSxWQrhNYOk=; b=OwnbK1JWesAXT2tUeOfzyAiZWbtVcVE4jc6i6Js1UP2DDoIwIaxGaqqWNRwTdRkMTw PJFcgwFTZF3ZRiQqz8yZw749g8GL5y3Rdzc6euRy+q/WzN+QleoILcwpQ6UoQ+ExyAZ9 jKTRRT3M8PAbmksu2q59vO5nzLiJUQl3QorIuP4iiW+Jh9HokNdK3nIPwD5YDKregfvr fS2nHFSRAUmatvl342ytJ7IMNXQWlEgVATo8EA6lKOu0YzM2vV648wCcKYdBiaM7G9Ki RGl7xryrsW1aN0SNKMrIBIpweNFhmZtbq+MqlSic+/Bnr45ttwYTDEYQmsRTWvPUKiqp 1y9A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1733505241; x=1734110041; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=7/24orPg51totydxWKxshLpDKZ8xGjsdaSxWQrhNYOk=; b=MxV+f9LMiwmveyp/P02gQk2e+1zU4NuUW0cWf3gppcrDiQe/aHG0qJZAXUOsjp9S/7 5cdoRdSULt3I1ZYXxEGf1QVw0ismWmzkpdIg7w9Yjk9/38ovp/iKHVDL85l953kAKesz rbfejCt48um8u2pm2pX8apUMEWSSlH/JkW8NMIYulDWH65zXr+O1Lef3W6sfXYNtX+// R/hssfyDr0v628rrJ8U922HUsERgPurNuBCZ9/E9ILTWKjWn/tiHrK9KtdN1ZR7IEATO 4nKIisujT++3g6HCGvuGY6T9KJMPLTNUygZ5wSEERKZmxk7PM4QpmqexYfBXhgLGOG66 7ydg== X-Gm-Message-State: AOJu0YxaIKjs51hUw6+fxTUQKKTZZs5FSqeagDQfPHSo552wE1eMA/LB srcp9lvxqoQmHBnZtzD5f37fIZ58G/+8oqMShdXbP97lwirKAzLz/sZCXjzY X-Gm-Gg: ASbGnctj+/7/jMBhUGk1aMm/IVWl0LYZRmv4LxoQ6MLUQAmdUegnHIhamEV7bZo7jGf 1kU1gL1MBECqRMrGFckreryjuJY0MlDQAar5enm+gdOqws+Z6kqWhrD0ZtSH2ss6B5BYjB3bGjF SjlNGhzqL5bV4jf7eqVervqUWijsVflccyCPfgZ8bivRyytinLAc1KkwK4nWzbSuQ7QwFAuiLEs 9aPv4e4ywP1aG4cNLtage2Cyj4VeceeHIuhBToEWkbeHw== X-Google-Smtp-Source: AGHT+IEgu5fjKFSaaFYDcXCrN/dAJN8nmI8a854/dqJ0K42c1H00PYSn8Nff6U7k83QjisV8VXJxXA== X-Received: by 2002:a05:6214:501c:b0:6d4:e0a:230e with SMTP id 6a1803df08f44-6d8e70cf492mr57034426d6.16.1733505240259; Fri, 06 Dec 2024 09:14:00 -0800 (PST) Received: from gnus ([70.26.179.129]) by smtp.gmail.com with ESMTPSA id 6a1803df08f44-6d8daa00671sm20916286d6.88.2024.12.06.09.13.59 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 06 Dec 2024 09:14:00 -0800 (PST) From: "Suhail Singh" To: control@debbugs.gnu.org Subject: control message to remove spurious waiting-on-contributor tag Date: Fri, 06 Dec 2024 12:13:49 -0500 Message-ID: <877c8c20qa.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: control 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.7 (/) user guix unarchive 74174 usertag 74174 - waiting-on-contributor archive 74174 unarchive 69932 usertag 69932 - waiting-on-contributor archive 69932 unarchive 69633 usertag 69633 - waiting-on-contributor archive 69633 quit