mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-04 12:41:46 +00:00
15 lines
308 B
Bash
Executable File
15 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CHROOTPATH=$1
|
|
|
|
# Enable the installer on boot
|
|
scripts/enable-installer-post.sh ${CHROOTPATH}
|
|
|
|
# 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}
|
|
|
|
exit 0
|