12 lines
248 B
Bash
Executable File
12 lines
248 B
Bash
Executable File
#!/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
|