summaryrefslogtreecommitdiff
path: root/start-container-docker.sh
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2018-06-27 10:13:48 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2018-06-28 05:32:23 +0000
commit69011f21ffa6cd45c09fd143bce287ffe8834ca0 (patch)
tree47fcfa7023bc47fb433a918d39a3f87d0135916b /start-container-docker.sh
parentb6fd5948377c67ca1eb9fdf66a1847bdee9d02e6 (diff)
start-container-docker: Fix handling of architecture without host/node/label
Fix docker image architecture detection when no host/node/label option is given -- e.g., when called via docker-run.sh. Change-Id: I1bf08668376c07e5380816a0681aa67f7a856f71
Diffstat (limited to 'start-container-docker.sh')
-rwxr-xr-xstart-container-docker.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/start-container-docker.sh b/start-container-docker.sh
index fc3b1f05..ad90942f 100755
--- a/start-container-docker.sh
+++ b/start-container-docker.sh
@@ -163,13 +163,16 @@ if [ x"$session_host" = x"" ]; then
# Get first FQDN. This name needs to have .tcwglab suffix for VPN'ed
# machines and entries in .ssh/config for external machines.
session_host=$(hostname -A | cut -d" " -f 1)
+ arch_host="localhost"
+else
+ arch_host="$session_host"
fi
if [ x"${container_arch}" = x"default" ]; then
if [ x"$label" != x"" ]; then
container_arch=$(print_arch_for_label "$label")
else
- container_arch=$(print_arch_for_host "$session_host")
+ container_arch=$(print_arch_for_host "$arch_host")
fi
elif [ x"$label" != x"" ]; then
echo "--arch conflicts with --label"