summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorIvan Popovych <ivan@ipvych.com>2025-06-12 14:40:48 +0300
committerLudovic Courtès <ludo@gnu.org>2025-06-20 17:59:03 +0200
commit93e84595ec18e5eb912ea55313c904c5b66f1847 (patch)
treeb5e04197dc1883eafeccd287a4a558250fb31b6e /etc
parent5007e5ab3f7bf23c416d907cd685f63e454a020f (diff)
guix-install.sh: Fix init profile not being removed.
* etc/guix-install.sh (sys_delete_init_profile): Fix init profile not being removed. Change-Id: I95b10ef85d363ac1b7c821e0ae91ca3e69c490ca Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'etc')
-rwxr-xr-xetc/guix-install.sh4
1 files 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()