Files
clr-installer/scripts/installer-post.sh
T
2019-01-08 16:24:10 -08:00

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