From 2431c6b6ae3b5828ec2d5f5b0894d29ed99721ea Mon Sep 17 00:00:00 2001 From: Joe Gitta Date: Tue, 26 May 2026 00:36:02 +0000 Subject: [PATCH] fix: enable root SSH login in preseed-bootstrap for debugging Allows SSH as root during first-boot setup phase so we can run commands without relying on the Proxmox console for paste. install-kiosk.sh already disables this after kiosk setup completes. Co-Authored-By: Claude Sonnet 4.6 --- preseed-bootstrap.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/preseed-bootstrap.sh b/preseed-bootstrap.sh index b668763..3e3187f 100644 --- a/preseed-bootstrap.sh +++ b/preseed-bootstrap.sh @@ -28,6 +28,9 @@ if [ -x /usr/local/bin/kiosk-setup ]; then fi EOF +# Allow root SSH login for debugging during setup +sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config + # Boot to text mode for the setup wizard systemctl set-default multi-user.target