Files
clr-installer/scripts/add-pxe-issue.sh
T
John 6f317e1a86 scripts: Add pxe reference script
This script creates the pxe image that is later processed into the
initrd for network installing with pxe.

Signed-off-by: John Akre <john.w.akre@intel.com>
2019-11-06 13:28:47 -08:00

10 lines
202 B
Bash
Executable File

#!/bin/bash
echo "Creating custom issue file for $1"
echo "
PXE installation of Clear Linux in progress and will reboot
automatically when completed. Please do not interrupt.
" >> $1/etc/issue
exit 0