From 555987af403a41350aa3cad9f7ab68fdac87a644 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Mon, 18 Aug 2025 20:46:12 +0200 Subject: [PATCH] Fix SSH port in post-install message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update from port 2222 to port 22 for dropbear - Remove redundant -p flag since 22 is default SSH port 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- post-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-install.sh b/post-install.sh index e74c79d..2856e24 100755 --- a/post-install.sh +++ b/post-install.sh @@ -326,7 +326,7 @@ echo "IMPORTANT: The LUKS passphrase is set in install.conf" echo "Save it securely for recovery purposes." echo "" echo "After reboot:" -echo "- SSH to port 2222 for remote unlock: ssh -p 2222 root@" +echo "- SSH to port 22 for remote unlock: ssh root@" echo "- Run 'unlock-luks' and follow the instructions to unlock LUKS" echo "- Once unlocked, SSH to port 22 as user '${ALMA_USER}'" echo "- LUKS passphrase: [see installer output]" \ No newline at end of file