mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-02 03:31:38 +00:00
18 lines
460 B
Bash
Executable File
18 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CHROOTPATH=$1
|
|
|
|
# Force Telemetry to use local host server
|
|
scripts/local-telemetry-post.sh ${CHROOTPATH}
|
|
|
|
# Delay booting to give user a change to change boot params
|
|
scripts/wait-to-boot-post.sh ${CHROOTPATH}
|
|
|
|
# Add issue (pre-login message) to inform user of how to run the installer
|
|
scripts/add-login-issue.sh ${CHROOTPATH}
|
|
|
|
# Add changes to PS1 to indicate live image by setting the hostname
|
|
echo "clr-live" > ${CHROOTPATH}/etc/hostname
|
|
|
|
exit 0
|