summaryrefslogtreecommitdiff
path: root/scripts/functions
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant+debianbugs@freegeek.org>2010-04-09 20:32:23 -0700
committermaximilian attems <maks@debian.org>2010-04-10 06:33:19 +0200
commit5db5becc85059e56075de5a331ed7c5a4cc2de0c (patch)
tree327884a5f155dfe1471cfea9a015a9d4289a002d /scripts/functions
parent3041c946e22f5e461ce25ea546b0b583e55ad578 (diff)
configure_networking: pxelinux BOOTIF fixes
looks like i missed a few things on implementing BOOTIF support properly. somehow i managed to get the order of the mac address backwards. i know i tested it many times.. Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'scripts/functions')
-rw-r--r--scripts/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions
index ec8a44b..88f1bbd 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -323,7 +323,7 @@ configure_networking()
if [ -z "$bootif_mac" ]; then
bootif_mac="$x"
else
- bootif_mac="$x:$bootif_mac"
+ bootif_mac="$bootif_mac:$x"
fi
done
unset IFS