From 3eca7a4f076d6b7149dc45b3bf2e3a106ee9ba57 Mon Sep 17 00:00:00 2001 From: TomasM Date: Thu, 11 Oct 2018 04:10:28 -0500 Subject: [PATCH] bugfix - send info messages during PXE boot to stderr --- livekitlib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/livekitlib b/livekitlib index 218ded5..2d611b6 100644 --- a/livekitlib +++ b/livekitlib @@ -465,7 +465,7 @@ download_data_pxe() init_network_ip - echo "* Downloading PXE file list" + echo "* Downloading PXE file list" >&2 PROTOCOL=http wget -q -O "$1/PXEFILELIST" "http://$SERVER:$PORT/PXEFILELIST?$(uname -r):$(uname -m)" @@ -475,7 +475,7 @@ download_data_pxe() tftp -g -r PXEFILELIST -l "$1/PXEFILELIST" $SERVER fi - echo "* Downloading files from the list" + echo "* Downloading files from the list" >&2 cat "$1/PXEFILELIST" | while read FILE; do if [ "$PROTOCOL" = "http" ]; then