From 74aeefe0061bcc221b4320d7383abefec0ceacc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Wed, 1 Apr 2026 16:39:45 +0200 Subject: [PATCH 1/2] Start the shell at tty8 as login shell --- live/live-root/etc/systemd/system/live-root-shell.service | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/live/live-root/etc/systemd/system/live-root-shell.service b/live/live-root/etc/systemd/system/live-root-shell.service index 9dc2f28de1..2724c62793 100644 --- a/live/live-root/etc/systemd/system/live-root-shell.service +++ b/live/live-root/etc/systemd/system/live-root-shell.service @@ -6,7 +6,8 @@ After=agama-hostname.service [Service] TTYPath=/dev/tty8 StandardInput=tty -ExecStart=/usr/bin/bash +# run as login shell to set the defaults from /etc/profile +ExecStart=/usr/bin/bash --login # start it again after crashing or accidentally closing the shell via "exit" or Ctrl+D Restart=always Type=exec From ee52c8da96280352c8e2831907e75d37da9e7687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Wed, 1 Apr 2026 16:49:42 +0200 Subject: [PATCH 2/2] Changes --- live/src/agama-installer.changes | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/live/src/agama-installer.changes b/live/src/agama-installer.changes index 9c4e383e79..7dc48c6b95 100644 --- a/live/src/agama-installer.changes +++ b/live/src/agama-installer.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Apr 1 14:46:08 UTC 2026 - Ladislav Slezák + +- Run the shell at tty8 as a login shell (to initialize some + environment variables like $PAGER from /etc/profile) + (gh#agama-project/agama#3354) + ------------------------------------------------------------------- Tue Mar 31 14:28:52 UTC 2026 - Shawn Dunn