From d91a7e9426c75cc3cd5748786419509b4b44d478 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Mon, 18 Aug 2025 21:35:35 +0200 Subject: [PATCH] Improve end-of-install instructions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Clear numbered steps for first boot process - Emphasize entering passphrase twice (RAID1 setup) - Mention automatic reboot after installation - Cleaner, more actionable instructions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- post-install.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/post-install.sh b/post-install.sh index 9c7b1cc..4b2c798 100755 --- a/post-install.sh +++ b/post-install.sh @@ -470,11 +470,12 @@ else fi echo "" -echo "IMPORTANT: The LUKS passphrase is set in install.conf" -echo "Save it securely for recovery purposes." +echo "IMPORTANT: Save the LUKS passphrase from install.conf securely!" echo "" -echo "After reboot:" -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 +echo "First Boot Instructions:" +echo "1. System will reboot automatically after installation" +echo "2. SSH as root: ssh root@" +echo "3. Run 'unlock-luks' and enter LUKS passphrase TWICE (once per disk)" +echo "4. System will boot normally, then SSH as user '${ALMA_USER}'" +echo "" +echo "For future unlocks, Clevis/Tang should handle this automatically." \ No newline at end of file