summaryrefslogtreecommitdiffstats
path: root/satellit_installer/includes/10-install_ipxe.inc
diff options
context:
space:
mode:
Diffstat (limited to 'satellit_installer/includes/10-install_ipxe.inc')
-rw-r--r--satellit_installer/includes/10-install_ipxe.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/satellit_installer/includes/10-install_ipxe.inc b/satellit_installer/includes/10-install_ipxe.inc
index f25b88f..e6a451c 100644
--- a/satellit_installer/includes/10-install_ipxe.inc
+++ b/satellit_installer/includes/10-install_ipxe.inc
@@ -2,6 +2,7 @@
install_ipxe() {
[ -z "$1" ] && perror "Call install_ipxe with target directory!"
git clone --branch openslx https://git.openslx.org/openslx-ng/ipxe.git "$1" || perror "Cloning ipxe repo failed"
+ cp "$BASEDIR/static_files/pxelinux.0" "$1/" || perror "Could not copy pxelinux.0 to $1"
# Symlink for USB-Stick HTTP access
mkdir -p "$WWWDIR"
ln -s -f "$TFTPDIR" "$WWWDIR/tftp" || perror "Could not create symlink for tftp dir"
@@ -11,7 +12,7 @@ compile_ipxe() {
echo "*** compiling iPXE in the background ..."
echo
[ -z "$1" ] && perror "Call compile_ipxe with target directory!"
- cd "$1"/src
+ cd "$1/src"
make bin/undionly.kkkpxe
chown -R taskmanager:www-data "$1"
if [ "$ERR" -ne 0 ]; then