From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 29 15:18:46 2022 Received: (at submit) by debbugs.gnu.org; 29 Oct 2022 19:18:46 +0000 Received: from localhost ([127.0.0.1]:36680 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oorLy-00065y-7i for submit@debbugs.gnu.org; Sat, 29 Oct 2022 15:18:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:42012) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oorLt-00065m-4n for submit@debbugs.gnu.org; Sat, 29 Oct 2022 15:18:44 -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 1oorLU-0003KN-12 for guix-patches@gnu.org; Sat, 29 Oct 2022 15:18:39 -0400 Received: from box.euandre.org ([46.101.160.115]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1oorLR-0001W5-RW for guix-patches@gnu.org; Sat, 29 Oct 2022 15:18:15 -0400 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 7DDFCFC3F4; Sat, 29 Oct 2022 16:17:37 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1667071058; bh=Xm8UKyXrHNe94VGgwyDdlmlqtFNGJ40EXlKjaX0S2Y0=; h=From:To:Cc:Subject:Date:From; b=NfEIBlAZDCywQ/b3orHazIT6wOlBlOGsDHsQgzPHi2suof9Z0LzctEBT/8rgzwm9K 7LKLtMHYW1yJwWw2crQZk5MELpiFpkL2YYPTbCmqXfsdPkMKmFxjpK+CIgS0BcIkCs cC70L/iLc9aaZspHKcqa4p0DJ7SmPAVXz20vj2fbeVKZGajQBW6QVIqzhiawpH8mRx bm2RkPCPmLEfxI97tbU2ddoKjYlurhMDjh2a4ZGa5p62D0IYsBczIZyaAHAibOdmS7 kFHQRLOkdpPypYE7EG0C6qPU43sOtkBF87H6QtfO75wxhBJ3w/cRdv16igmHyF6Vhv ZKJ6aiopWCdWQ== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH] doc: Update reference to special-files-service-type. Date: Fri, 28 Oct 2022 23:40:09 -0300 Message-Id: <20221029024009.10930-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.euandre.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, DATE_IN_PAST_12_24=1.049, 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=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.6 (/) X-Debbugs-Envelope-To: submit Cc: EuAndreh 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.6 (-) * doc/guix.texi (Base Services): Update what the default value of special-files-service-type is, which already includes /usr/bin/env, and the accompanying examples. --- The code for special-files-service-type changed in a9162155975a131afa1e6a44262afbb7af91f7fd, this is the equivalent documentation change. doc/guix.texi | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index 80fb3bc47f..449049fcc8 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -17711,17 +17711,19 @@ and the second element is its target. By default it is: @cindex @file{/bin/sh} @cindex @file{sh}, in @file{/bin} @lisp -`(("/bin/sh" ,(file-append bash "/bin/sh"))) +`(("/bin/sh" ,(file-append bash "/bin/sh")) + ("/usr/bin/env" ,(file-append coreutils "/bin/env"))) @end lisp @cindex @file{/usr/bin/env} @cindex @file{env}, in @file{/usr/bin} -If you want to add, say, @code{/usr/bin/env} to your system, you can +If you want to add, say, @code{/bin/bash} to your system, you can change it to: @lisp `(("/bin/sh" ,(file-append bash "/bin/sh")) - ("/usr/bin/env" ,(file-append coreutils "/bin/env"))) + ("/usr/bin/env" ,(file-append coreutils "/bin/env")) + ("/bin/bash" ,(file-append bash "/bin/bash"))) @end lisp Since this is part of @code{%base-services}, you can use -- 2.38.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 03 12:43:09 2022 Received: (at submit) by debbugs.gnu.org; 3 Nov 2022 16:43:09 +0000 Received: from localhost ([127.0.0.1]:50170 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oqdJ6-0005xo-PE for submit@debbugs.gnu.org; Thu, 03 Nov 2022 12:43:09 -0400 Received: from lists.gnu.org ([209.51.188.17]:39936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oqdJ4-0005xX-BL for submit@debbugs.gnu.org; Thu, 03 Nov 2022 12:43:06 -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 1oqdJ3-0000lV-Sd for guix-patches@gnu.org; Thu, 03 Nov 2022 12:43:05 -0400 Received: from mira.cbaines.net ([212.71.252.8]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oqdJ1-0003ua-Hm for guix-patches@gnu.org; Thu, 03 Nov 2022 12:43:04 -0400 Received: from localhost (93-63-133-243.ip27.fastwebnet.it [93.63.133.243]) by mira.cbaines.net (Postfix) with ESMTPSA id EB9C127BBEA; Thu, 3 Nov 2022 16:43:01 +0000 (GMT) Received: from felis (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 6e1c8b05; Thu, 3 Nov 2022 16:43:01 +0000 (UTC) References: <20221029024009.10930-1-eu@euandre.org> User-agent: mu4e 1.8.9; emacs 28.1 From: Christopher Baines To: EuAndreh Subject: Re: [bug#58874] [PATCH] doc: Update reference to special-files-service-type. Date: Thu, 03 Nov 2022 17:42:37 +0100 In-reply-to: <20221029024009.10930-1-eu@euandre.org> Message-ID: <87sfj0m1kb.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 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 58874-done@debbugs.gnu.org, guix-patches@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 EuAndreh via Guix-patches via writes: > * doc/guix.texi (Base Services): Update what the default value of > special-files-service-type is, which already includes /usr/bin/env, > and the accompanying examples. > --- > > The code for special-files-service-type changed in > a9162155975a131afa1e6a44262afbb7af91f7fd, this is the equivalent > documentation change. > > doc/guix.texi | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) Thanks! I've tweaked the commit message a bit, and pushed this to master as 7bb3644dd0344adb444911b4416f2f026856cb46. Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmNj75RfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XdfTQ//e5kJxcTtEzFEd6+5tNCTYVrrzIySURd0 Vh+VaYpucGvudB8mjqC3Z6C1YFPmeErP87GCLFd0ZtRrs2p52lpk/VDI0LkjXZLi DC76RwpsrrZ3mQxLDlXhFEdeZPYe7JlErKSdq7Ydl0Ei4VwZswovb49zYwyNeMri PlwJqv/0mebKzvfO/UN3D+oqXyy0BYBTSxer9BRHiLx+/gsGQDtdno8S4TouNkTx 7m9Y6kKueOXcI9pvXAnNu13o13x4sj9Hew5zlWGuWKBI1qJPtzjB3t43EGhsGHHM ndugRWwCcJrE1lmr4wszr8FJH+il2tLrTsDkwIk+4fYGQMJrX445K/fvjRKD5mjQ hNvyfpaJayN2c+IE9lN3TYFu9xhW+JhyVvAeNtimq0LhNboJ1GTV5/x7OiWmbGjX oo0Cj85LzgQiprj6OLOjusLQvwfz0+1an0UXu0bwNJdqY/oHMQSzfQRFprhPShDN k3nIBhIQQKdDUQS0Db+V1Zv7NSIvvMzfyw+OVo1npx0vDgshGtpQIEgQZZkc2Xrs D2a6Qw6sgSqWzNywj0OGsYu+v5DaoMj1WjA158NJB1jeYO+IDYcRpNsAwp+TYIgr ORgAg9YlfAxXvl+JnbcBF7o+yi784NZaNnrHsNpAdtfJQFjeqxYvzMWG/usYvwtF djiqr3hPT08= =ULx6 -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 20 07:23:51 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 02 Dec 2022 12:24:13 +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