From 9158c094d394850824506c73c7f4fc8ee5593e92 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 16 Apr 2026 15:25:24 -0400 Subject: [PATCH] Explicitly set PermitRootLogin no in the ssh configuration for convert to server. I'm pretty sure this is the default behavior in Arch, but for something this important it's better to sepcify. --- .includes/convert-to-server.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.includes/convert-to-server.sh b/.includes/convert-to-server.sh index 60b1f32..b7e4693 100755 --- a/.includes/convert-to-server.sh +++ b/.includes/convert-to-server.sh @@ -37,6 +37,7 @@ fi sudo mkdir -p /etc/ssh/sshd_config.d sudo tee /etc/ssh/sshd_config.d/99-stormux-server.conf > /dev/null << EOF Port ${sshPort} +PermitRootLogin no PasswordAuthentication no KbdInteractiveAuthentication no EOF