summaryrefslogtreecommitdiffstats
path: root/builder
diff options
context:
space:
mode:
authortorben2015-11-20 18:32:12 +0100
committertorben2015-11-20 18:32:12 +0100
commit9ef06ccd6bb9179878928a73495285682e4bcb19 (patch)
tree9ffc4108ea8beff06d8d9e42f5835f37406a13ca /builder
parentImprove slx config. (diff)
downloadsystemd-init-9ef06ccd6bb9179878928a73495285682e4bcb19.tar.gz
systemd-init-9ef06ccd6bb9179878928a73495285682e4bcb19.tar.xz
systemd-init-9ef06ccd6bb9179878928a73495285682e4bcb19.zip
Fix.
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