Add firstboot onboarding and prep/check tooling

This commit is contained in:
Aaron
2026-01-02 22:28:57 -05:00
parent ccc97f7912
commit 40b1b43449
20 changed files with 1487 additions and 220 deletions

11
systemd/pikit-ready.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Touches /var/run/pikit-ready on boot when firstboot is complete.
set -euo pipefail
DONE_FILE="/var/lib/pikit/firstboot/firstboot.done"
READY_FILE="/var/run/pikit-ready"
if [ -f "$DONE_FILE" ]; then
touch "$READY_FILE"
fi