summaryrefslogtreecommitdiffstats
path: root/builder
diff options
context:
space:
mode:
Diffstat (limited to 'builder')
-rwxr-xr-xbuilder/dnbd3-rootfs/hooks/pre-mount/fetch-config.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/dnbd3-rootfs/hooks/pre-mount/fetch-config.sh b/builder/dnbd3-rootfs/hooks/pre-mount/fetch-config.sh
index 581c8e05..f0753831 100755
--- a/builder/dnbd3-rootfs/hooks/pre-mount/fetch-config.sh
+++ b/builder/dnbd3-rootfs/hooks/pre-mount/fetch-config.sh
@@ -7,7 +7,7 @@ IFS=","
local host
for host in ${SLX_SERVER}; do
info "Trying host \"$host\"."
- wget --timeout 5 --quiet "http://${host}${SLX_SERVER_BASE}${configuration_file_name}" \
+ wget --timeout 5 --quiet "http://${host}/${SLX_SERVER_BASE}${configuration_file_name}" \
--output-document "/$configuration_file_name"
local return_code="$?"
[[ $return_code == 0 ]] && break