mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-05 13:11:28 +00:00
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>
10 lines
202 B
Bash
Executable File
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
|