From unknown Fri Jun 20 07:13:58 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#68357 <68357@debbugs.gnu.org> To: bug#68357 <68357@debbugs.gnu.org> Subject: Status: [PATCH] service: fix `unload all` * modules/shepherd/service.scm: fix `unload all` Reply-To: bug#68357 <68357@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:13:58 +0000 retitle 68357 [PATCH] service: fix `unload all` * modules/shepherd/service.= scm: fix `unload all` reassign 68357 guix-patches submitter 68357 "zero@fedora" severity 68357 normal tag 68357 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 09 19:31:35 2024 Received: (at submit) by debbugs.gnu.org; 10 Jan 2024 00:31:36 +0000 Received: from localhost ([127.0.0.1]:41358 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNMVF-00075Y-GA for submit@debbugs.gnu.org; Tue, 09 Jan 2024 19:31:35 -0500 Received: from lists.gnu.org ([2001:470:142::17]:41020) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNMVE-0006y2-6D for submit@debbugs.gnu.org; Tue, 09 Jan 2024 19:31:28 -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 1rNMUz-0005el-Up for guix-patches@gnu.org; Tue, 09 Jan 2024 19:31:13 -0500 Received: from tilde.club ([2607:5300:203:b92b::114]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rNMUr-00075Z-R8 for guix-patches@gnu.org; Tue, 09 Jan 2024 19:31:13 -0500 Received: from fedora.. (unknown [87.117.56.99]) by tilde.club (Postfix) with ESMTPA id CD7E72266734F; Wed, 10 Jan 2024 00:31:00 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 tilde.club CD7E72266734F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tilde.club; s=mail; t=1704846661; bh=laX3czovM+vY/7jT6xQIBnFiPPmYcUaRHewoGmswbS0=; h=From:To:Cc:Subject:Date:From; b=urv6VDawjG3lAK9/Nm3TiW6juyjcIi8KZk8gdMNvFMuWQDq6+zocjapiRsGGo7XMU xpiIc1ZZilY5v6/5TrgGZPvkdO7NfZ+d+a8k+OrK4lIGgk4Ckc0D47TvaIzPbWArw+ +UVadEKr68qzmUfJTEkfDzeaCuy3hYPy/NaRGEgU= From: "zero@fedora" To: guix-patches@gnu.org Subject: [PATCH] service: fix `unload all` * modules/shepherd/service.scm: fix `unload all` Date: Wed, 10 Jan 2024 03:29:22 +0300 Message-ID: <20240110003016.1761645-2-shinyzero0@tilde.club> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2607:5300:203:b92b::114; envelope-from=shinyzero0@tilde.club; helo=tilde.club 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_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01, T_SPF_HELO_TEMPERROR=0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: "zero@fedora" 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.1 (/) --- modules/shepherd/service.scm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modules/shepherd/service.scm b/modules/shepherd/service.scm index 5be78bd..54d3400 100644 --- a/modules/shepherd/service.scm +++ b/modules/shepherd/service.scm @@ -1136,11 +1136,6 @@ requests arriving on @var{channel}." (length lst)) (map service-canonical-name lst)) (loop registered)))) - (('unregister-all) ;no reply - (let ((root (cdr (vhash-assq 'root registered)))) - (loop (fold (cut vhash-consq <> root <>) - vlist-null - (service-provision root))))) (('lookup name reply) ;; Look up NAME and return it, or #f, to REPLY. (put-message reply @@ -2638,8 +2633,11 @@ requested to be removed." (let ((name (string->symbol service-name))) (cond ((eq? name 'all) ;; Special 'remove all' case. - (put-message (current-registry-channel) `(unregister-all)) - #t) + (unregister-services + (filter + (lambda (sv) + (not (eq? (service-canonical-name sv) 'root))) + (service-list)))) (else ;; Removing only one service. (match (lookup-service name) -- 2.43.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 09 19:34:33 2024 Received: (at 68357) by debbugs.gnu.org; 10 Jan 2024 00:34:33 +0000 Received: from localhost ([127.0.0.1]:41363 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNMYD-0007NK-52 for submit@debbugs.gnu.org; Tue, 09 Jan 2024 19:34:33 -0500 Received: from tilde.club ([142.44.150.184]:38022 ident=postfix) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNMYB-0007NB-5W for 68357@debbugs.gnu.org; Tue, 09 Jan 2024 19:34:31 -0500 Received: from fedora.. (unknown [87.117.56.99]) by tilde.club (Postfix) with ESMTPA id 66C342266734F; Wed, 10 Jan 2024 00:34:22 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 tilde.club 66C342266734F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tilde.club; s=mail; t=1704846863; bh=laX3czovM+vY/7jT6xQIBnFiPPmYcUaRHewoGmswbS0=; h=From:To:Cc:Subject:Date:From; b=Vzn+LJjtq8PI6xO02YEn1CkNap/7UIhc7zedIa3zHRsqMU8Do+6sXRkG/tA1boeje Ny6MYU2Ft8GxpCzcZdFLOxCCYE04OTLniCqCERdy3OUChpagMADH3RJLVO06dOuG+k XUG9J2PkjUsFQ3vrUt6D7T94VbABWg7pPX0QMUEk= From: "zero@fedora" To: 68357@debbugs.gnu.org Subject: [PATCH] shepherd: service: fix `unload all` Date: Wed, 10 Jan 2024 03:33:15 +0300 Message-ID: <20240110003314.1763881-2-shinyzero0@tilde.club> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 68357 Cc: "zero@fedora" 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 (-) --- modules/shepherd/service.scm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modules/shepherd/service.scm b/modules/shepherd/service.scm index 5be78bd..54d3400 100644 --- a/modules/shepherd/service.scm +++ b/modules/shepherd/service.scm @@ -1136,11 +1136,6 @@ requests arriving on @var{channel}." (length lst)) (map service-canonical-name lst)) (loop registered)))) - (('unregister-all) ;no reply - (let ((root (cdr (vhash-assq 'root registered)))) - (loop (fold (cut vhash-consq <> root <>) - vlist-null - (service-provision root))))) (('lookup name reply) ;; Look up NAME and return it, or #f, to REPLY. (put-message reply @@ -2638,8 +2633,11 @@ requested to be removed." (let ((name (string->symbol service-name))) (cond ((eq? name 'all) ;; Special 'remove all' case. - (put-message (current-registry-channel) `(unregister-all)) - #t) + (unregister-services + (filter + (lambda (sv) + (not (eq? (service-canonical-name sv) 'root))) + (service-list)))) (else ;; Removing only one service. (match (lookup-service name) -- 2.43.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 09 20:32:10 2024 Received: (at 68357) by debbugs.gnu.org; 10 Jan 2024 01:32:10 +0000 Received: from localhost ([127.0.0.1]:41417 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNNRx-0002X6-O7 for submit@debbugs.gnu.org; Tue, 09 Jan 2024 20:32:10 -0500 Received: from tilde.club ([2607:5300:203:b92b::114]:46742 ident=postfix) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rNNRv-0002Ww-M0 for 68357@debbugs.gnu.org; Tue, 09 Jan 2024 20:32:08 -0500 Received: from fedora.. (unknown [87.117.56.99]) by tilde.club (Postfix) with ESMTPA id 1B75822559F04; Wed, 10 Jan 2024 01:31:58 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 tilde.club 1B75822559F04 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tilde.club; s=mail; t=1704850319; bh=RbIt6DMvY/89lcJDlPqBczDfnEYVN/XSsT4a331fqkc=; h=From:To:Cc:Subject:Date:From; b=lII+Xp+rgkb8QF4dQCqJhKO4Bfre/aOkEOJI/r282fbcOUuv4exnA/NbGjIBRkdYy NaoFcd445bibFZjznlQ8jL2eRYZgrKeIcduFLMXmWNIeyvP+1chpfGq0HQ4Mf8NZaj 4ARDaWbTdXYaTRHweknBGXUG8k5iRoF4hzTPpRmg= From: "zero@fedora" To: 68357@debbugs.gnu.org Subject: [PATCH] shepherd: service: fix `unload all` Date: Wed, 10 Jan 2024 04:30:59 +0300 Message-ID: <20240110013058.1822277-2-shinyzero0@tilde.club> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 68357 Cc: "zero@fedora" 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 (-) * modules/shepherd/service.scm: fix `unload all` --- modules/shepherd/service.scm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modules/shepherd/service.scm b/modules/shepherd/service.scm index 5be78bd..54d3400 100644 --- a/modules/shepherd/service.scm +++ b/modules/shepherd/service.scm @@ -1136,11 +1136,6 @@ requests arriving on @var{channel}." (length lst)) (map service-canonical-name lst)) (loop registered)))) - (('unregister-all) ;no reply - (let ((root (cdr (vhash-assq 'root registered)))) - (loop (fold (cut vhash-consq <> root <>) - vlist-null - (service-provision root))))) (('lookup name reply) ;; Look up NAME and return it, or #f, to REPLY. (put-message reply @@ -2638,8 +2633,11 @@ requested to be removed." (let ((name (string->symbol service-name))) (cond ((eq? name 'all) ;; Special 'remove all' case. - (put-message (current-registry-channel) `(unregister-all)) - #t) + (unregister-services + (filter + (lambda (sv) + (not (eq? (service-canonical-name sv) 'root))) + (service-list)))) (else ;; Removing only one service. (match (lookup-service name) -- 2.43.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 14 16:33:31 2024 Received: (at 68357) by debbugs.gnu.org; 14 Jan 2024 21:33:31 +0000 Received: from localhost ([127.0.0.1]:44160 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rP86k-0007he-LL for submit@debbugs.gnu.org; Sun, 14 Jan 2024 16:33:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:42142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rP86i-0007hO-4o for 68357@debbugs.gnu.org; Sun, 14 Jan 2024 16:33:29 -0500 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 1rP86d-00017k-2Z; Sun, 14 Jan 2024 16:33:23 -0500 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=Rff2MoltPQFV0G4dTI0vFPAfs51ntIEe1dz+B7ZDHKo=; b=nf7ABi5IiZxWNX1bGkJL GyDL1918mQIhNFcnyv54dDFZIeY4N5NYz8Txnld3OLxDdlVEVFASjlinDfM7e2LGi9cJPohHiuSGj b2Jut6NNjf9Atr67k2XDySxUesiFY2GT5M+HSsIlwixJNae11gJzIbdC0Eg3mnhwz0H/neHsqzROI vxb7HQrKS7SPpngGlmVtB9IDONvb5aEt0ktXwBiSvwPKZm1xRUnH334Mw5/VpBerAbPNPwDaDnSbQ IsYXAuNuaa67oDKjaxjp4WhleotkT4CVN5LZY4/jCEnuIPAlK/HR8Y+tDPhMjMuopsBftFE7fHbZl ylGgzJVZUB1+VQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: "zero@fedora" Subject: Re: [bug#68357] [PATCH] shepherd: service: fix `unload all` In-Reply-To: <20240110013058.1822277-2-shinyzero0@tilde.club> (shinyzero0@tilde.club's message of "Wed, 10 Jan 2024 04:30:59 +0300") References: <20240110003016.1761645-2-shinyzero0@tilde.club> <20240110013058.1822277-2-shinyzero0@tilde.club> Date: Sun, 14 Jan 2024 22:33:18 +0100 Message-ID: <87v87vfvmp.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: 68357 Cc: 68357@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: -3.3 (---) Hi, "zero@fedora" skribis: > * modules/shepherd/service.scm: fix `unload all` Thanks for the patch! > - (('unregister-all) ;no reply > - (let ((root (cdr (vhash-assq 'root registered)))) > - (loop (fold (cut vhash-consq <> root <>) > - vlist-null > - (service-provision root))))) > (('lookup name reply) > ;; Look up NAME and return it, or #f, to REPLY. > (put-message reply > @@ -2638,8 +2633,11 @@ requested to be removed." > (let ((name (string->symbol service-name))) > (cond ((eq? name 'all) > ;; Special 'remove all' case. > - (put-message (current-registry-channel) `(unregister-all)) > - #t) > + (unregister-services > + (filter > + (lambda (sv) > + (not (eq? (service-canonical-name sv) 'root))) > + (service-list)))) Do I get it right that the problem with the current implementation is that services are removed from the registry but not actually stopped? Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 14 17:53:34 2024 Received: (at 68357) by debbugs.gnu.org; 14 Jan 2024 22:53:34 +0000 Received: from localhost ([127.0.0.1]:44217 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rP9MA-0006eY-Rf for submit@debbugs.gnu.org; Sun, 14 Jan 2024 17:53:34 -0500 Received: from tilde.club ([142.44.150.184]:35674 ident=postfix) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rP9M9-0006eN-5M for 68357@debbugs.gnu.org; Sun, 14 Jan 2024 17:53:30 -0500 Received: from localhost (unknown [87.117.51.71]) by tilde.club (Postfix) with ESMTPSA id E4BBF22ACAE5A; Sun, 14 Jan 2024 22:53:27 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 tilde.club E4BBF22ACAE5A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tilde.club; s=mail; t=1705272808; bh=r/WRWB1SzSjeNMg4x59NSRavHi8GKv2FFQGG2DWRjR8=; h=Date:To:Cc:Subject:From:References:In-Reply-To:From; b=RxrqAuE2VyjmCeukMqY2sHZAWTWLSB3ecw7yjUsyRXLPBtsNVF0mD30owiaJIrd64 N5UJOGLeaRqp6twfLSsmyEpPzdDp6QHVKvm+9BUg2jSAIvq1xiFrsTt6K/PWHqnGIl qvLZtvTDXiXHdSn9GPdyJhE6iCtOz1RaQ4P3e11k= Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Mon, 15 Jan 2024 01:53:25 +0300 Message-Id: To: =?utf-8?q?Ludovic_Court=C3=A8s?= Subject: Re: [bug#68357] [PATCH] shepherd: service: fix `unload all` From: "ShinyZero0" X-Mailer: aerc 0.15.2 References: <20240110003016.1761645-2-shinyzero0@tilde.club> <20240110013058.1822277-2-shinyzero0@tilde.club> <87v87vfvmp.fsf@gnu.org> In-Reply-To: <87v87vfvmp.fsf@gnu.org> X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 68357 Cc: 68357@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 (-) Hi Ludo! Thanks for replying. Yes, that was the problem. `herd reload root all` was leaving the processes running and many of them crashed or had strange behaviour after loading, so one had to kill them manually and then restart=20 the services. Of course `herd unload root all` was the same. Best wishes, Paul. From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 21 17:23:47 2024 Received: (at 68357-done) by debbugs.gnu.org; 21 Jan 2024 22:23:47 +0000 Received: from localhost ([127.0.0.1]:39183 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rRgEE-0007yv-Kx for submit@debbugs.gnu.org; Sun, 21 Jan 2024 17:23:47 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52242) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rRgE9-0007yZ-MF for 68357-done@debbugs.gnu.org; Sun, 21 Jan 2024 17:23:45 -0500 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 1rRgDz-00089u-30; Sun, 21 Jan 2024 17:23:31 -0500 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=cZG6YHjzmv54iJeGWWtNgQxebvpoq/JONJKNUoKO6LI=; b=dcykgAEja30noK6UkBci eB4NY5t6EltrhVJdUDX2UPANnB3aqw+E2u8gS3Nl/0kKqf5Aiyi3DJJSQ/II9mTMv3e3yolSBZr3+ 3vUnw9StxEFj1OPwImgAsbunFyYPmlqhftQrHQ3JronorvJkBUtAGuiEprqLfICONTcRFjrH35dj3 APwlrEz1pESMC2VRDse+dez+MrNpNfgMPgFUTSBPOTAowEHsHGHPElq+jGmH2JD7sFY/pmkt7midA d0ou/Ehhc83XYRxqfr/TRw8aCvTpKo29LK+H4h1yfBwCP5tEAPoFwuKQ3NjcLLAv4HRJEiTr/DmHT 6Ugw1RGAMw86hA==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: "ShinyZero0" Subject: Re: [bug#68357] [PATCH] shepherd: service: fix `unload all` In-Reply-To: (shinyzero0@tilde.club's message of "Mon, 15 Jan 2024 01:53:25 +0300") References: <20240110003016.1761645-2-shinyzero0@tilde.club> <20240110013058.1822277-2-shinyzero0@tilde.club> <87v87vfvmp.fsf@gnu.org> Date: Sun, 21 Jan 2024 23:23:03 +0100 Message-ID: <87il3m8gxk.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: 68357-done Cc: 68357-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: -3.3 (---) Hi! "ShinyZero0" skribis: > Yes, that was the problem. `herd reload root all` was leaving the > processes running and many of them crashed or had strange behaviour > after loading, so one had to kill them manually and then restart=20 > the services. > > Of course `herd unload root all` was the same. > > Best wishes, Paul. Thanks for clarifying. I pushed something similar along with a test as commit b7fcdad75dff73fb4a8f531d0834eb9a965bcfd6. Ludo=E2=80=99. From unknown Fri Jun 20 07:13:58 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 Feb 2024 12:24:17 +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