From unknown Mon Aug 18 14:24:13 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#77817 <77817@debbugs.gnu.org> To: bug#77817 <77817@debbugs.gnu.org> Subject: Status: [PATCH] guix-install.sh: fix removal of /etc/profile.d sh file. Reply-To: bug#77817 <77817@debbugs.gnu.org> Date: Mon, 18 Aug 2025 21:24:13 +0000 retitle 77817 [PATCH] guix-install.sh: fix removal of /etc/profile.d sh fil= e. reassign 77817 guix-patches submitter 77817 Cayetano Santos severity 77817 normal tag 77817 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 15 03:45:09 2025 Received: (at submit) by debbugs.gnu.org; 15 Apr 2025 07:45:09 +0000 Received: from localhost ([127.0.0.1]:50387 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1u4ayi-0005IO-ST for submit@debbugs.gnu.org; Tue, 15 Apr 2025 03:45:09 -0400 Received: from lists.gnu.org ([2001:470:142::17]:50054) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1u4ayg-0005Cm-14 for submit@debbugs.gnu.org; Tue, 15 Apr 2025 03:45:07 -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 1u4ayW-0002SN-7Q for guix-patches@gnu.org; Tue, 15 Apr 2025 03:44:57 -0400 Received: from latitanza.investici.org ([82.94.249.234]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1u4ayT-0006w9-TB for guix-patches@gnu.org; Tue, 15 Apr 2025 03:44:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1744703091; bh=v8s6+SpqAzGdyr3xD432ap/YYo1JM9qvWQApxX4lFQ8=; h=From:To:Cc:Subject:Date:From; b=ZOKkhj3Y79BgKIUvRGzjGGZQv2CCwIiKABFc1FeoeJiP7aQ2SuxE6w2fOtqKzV/d6 1TekakDqYC46QooT6WO8ofS/gsp6Ix4XPzcDVaPWFaL19200ovo3V62fWlEF4iYCNg gM7ZCxmurPD6NhLyWh1NXJNmghGJpc2vf0ocuxuw= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4ZcGQW2QdRzGp3n; Tue, 15 Apr 2025 07:44:51 +0000 (UTC) Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4ZcGQW0m4xzGp3X; Tue, 15 Apr 2025 07:44:51 +0000 (UTC) From: Cayetano Santos To: guix-patches@gnu.org Subject: [PATCH] guix-install.sh: fix removal of /etc/profile.d sh file. Date: Tue, 15 Apr 2025 09:44:32 +0200 Message-ID: <3f5eca680f2d4edf7009ed93dcb91c3e4a7fdae3.1744703072.git.csantosb@inventati.org> X-Mailer: git-send-email 2.49.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=82.94.249.234; envelope-from=csantosb@inventati.org; helo=latitanza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Cayetano Santos 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 (/) Change-Id: I244d819ada1553c5f050b0a50e19867777152f83 --- etc/guix-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/guix-install.sh b/etc/guix-install.sh index b5d833cd64..2944cb97f6 100755 --- a/etc/guix-install.sh +++ b/etc/guix-install.sh @@ -879,8 +879,8 @@ sys_maybe_setup_selinux() sys_delete_init_profile() { - _msg_info "removing /etc/profile.d/guix.sh" - rm -f /etc/profile.d/guix.sh + _msg_info "removing /etc/profile.d/zzz-guix.sh" + rm -f /etc/profile.d/zzz-guix.sh } sys_delete_user_profiles() base-commit: 5b13aa9ea4f998f616c5354cae430e15ca60b5cd -- 2.49.0 From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 17 05:05:51 2025 Received: (at 77817-done) by debbugs.gnu.org; 17 Jul 2025 09:05:51 +0000 Received: from localhost ([127.0.0.1]:52996 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ucKYp-0006Yf-L6 for submit@debbugs.gnu.org; Thu, 17 Jul 2025 05:05:51 -0400 Received: from confino.investici.org ([93.190.126.19]:59663) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1ucKYl-0006YU-2b for 77817-done@debbugs.gnu.org; Thu, 17 Jul 2025 05:05:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1752743145; bh=ElOd+rEkZoNkEdtLznc4p3dOjJR41InPBzX7qEMZzpw=; h=From:To:Subject:Date:From; b=mv7a7pNQwjqY1GN0RoJEjWDmF1tQFLBYN0SuFuFvLguYBEjzpHf8OzYEefSN99Y0E 6h+m3xEF/uVLp57qt6JjtLJU9V4RHNITvCn6YauAE1sOLrKohHo1NpmbeXdrS9ndLv 7eW6srofdkRzWe+aqasucWIChV79Ez9Myx9xD8VE= Received: from mx1.investici.org (unknown [127.0.0.1]) by confino.investici.org (Postfix) with ESMTP id 4bjRpx1bGPz114t for <77817-done@debbugs.gnu.org>; Thu, 17 Jul 2025 09:05:45 +0000 (UTC) Received: from [93.190.126.19] (mx1.investici.org [93.190.126.19]) (Authenticated sender: cayetano.santos@inventati.org) by localhost (Postfix) with ESMTPSA id 4bjRpx0kBwz114C for <77817-done@debbugs.gnu.org>; Thu, 17 Jul 2025 09:05:45 +0000 (UTC) From: Cayetano Santos To: 77817-done@debbugs.gnu.org Subject: close User-Agent: mu4e 1.12.11; emacs 30.1 Date: Thu, 17 Jul 2025 11:05:43 +0200 Message-ID: <871pqfyyoo.fsf@inventati.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 77817-done 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.7 (-) --=-=-= Content-Type: text/plain Already merged. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIwEARYKADUWIQTMuBhC+dcFjs1nN3q/XN9N9r9mggUCaHi85xccY3NhbnRvc2JA aW52ZW50YXRpLm9yZwAKCRC/XN9N9r9mguv0AQDFiQqPZNrTRNTyOuu1RW6IDlaX 7sq/lNovi/NDxybhYAD4kqBf/2I5YcPixg40gMnl5aTFjHoV1XRPlAd/F2RtDQ== =YZq4 -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 14:24:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 14 Aug 2025 11:24:05 +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