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, 3 insertions, 0 deletions
diff --git a/satellit_installer/includes/10-install_ipxe.inc b/satellit_installer/includes/10-install_ipxe.inc
index d64c36e..2a5afd7 100644
--- a/satellit_installer/includes/10-install_ipxe.inc
+++ b/satellit_installer/includes/10-install_ipxe.inc
@@ -16,12 +16,15 @@ install_ipxe() {
compile_ipxe() {
echo "*** compiling iPXE in the background ..."
+ echo
[ -z "$1" ] && perror "Call compile_ipxe with target directory!"
cd "$1"/src
make bin/undionly.kkkpxe
+ chown -R taskmanager:www-data "$1"
if [ "$ERR" -ne 0 ]; then
pwarning "*** Background compilation of iPXE failed."
else
echo "*** Background compilation of iPXE successful."
fi
+ echo
}