Two user-visible polish passes on top of the walking-skeleton install: - Console welcome: live ISO's getty no longer shows the bare Arch prompt. `/etc/hostname` is now `proksi` so avahi advertises `proksi.local`; a systemd oneshot (`furtka-issue.service`, runs after network-online.target) regenerates `/etc/issue` via `/usr/local/bin/furtka-update-issue` to show both `http://proksi.local:5000` (preferred, via mDNS — avahi and nss-mdns are already in `packages.extra`) and the raw IP as a fallback for networks where mDNS is flaky. `agetty --reload` nudges the already- running login prompt to redraw. - /install/log now polls a JSON endpoint (`/install/log.json`) every 3 s instead of meta-refresh, so expanding the collapsed log `<details>` doesn't get eaten by the refresh. Noscript fallback keeps the meta-refresh for JS-off users. When the install finishes, the Done state shows a Reboot-now button that POSTs to `/install/reboot` (guarded server-side to only reboot once status is "done", so a panicked click mid-pacstrap can't brick the box). A confirm() reminds the user to pull the USB / eject the ISO first. End-to-end tested on a Proxmox VM 2026-04-14: boot → wizard → archinstall → Done state → Reboot now → VM came back up → login as created user → `docker ps` worked. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
802 B
Bash
Executable file
23 lines
802 B
Bash
Executable file
#!/bin/bash
|
|
# Regenerates /etc/issue so the live-ISO console tells the user which URL
|
|
# to open in their browser. Shows proksi.local (via avahi/mDNS) as the
|
|
# preferred URL and the raw IP as a fallback for networks where mDNS
|
|
# doesn't work. Reload at the end nudges agetty to redraw.
|
|
set -e
|
|
|
|
ip=$(ip -4 -o addr show scope global 2>/dev/null | awk '{print $4}' | cut -d/ -f1 | head -1)
|
|
|
|
{
|
|
echo
|
|
echo " Open Furtka in a browser on another device on your network:"
|
|
echo
|
|
echo " http://proksi.local:5000 (easy — try this first)"
|
|
if [ -n "$ip" ]; then
|
|
echo " http://${ip}:5000 (fallback if the first doesn't work)"
|
|
fi
|
|
echo
|
|
echo " Then follow the wizard to install Furtka on this machine."
|
|
echo
|
|
} > /etc/issue
|
|
|
|
agetty --reload 2>/dev/null || true
|