From unknown Tue Jun 17 20:39:45 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: Wed, 18 Jun 2025 03:39:45 +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