diff options
author | Michal Skalski <mskalski@mirantis.com> | 2015-09-26 16:10:17 +0200 |
---|---|---|
committer | Jonas Bjurel <jonas.bjurel@ericsson.com> | 2015-09-26 15:17:41 +0000 |
commit | 1f0f3b7cc5cbe7673305297d0219b3e7309aa9d6 (patch) | |
tree | bfab4faaa0065f55e1baaf47e6b1b110533796df /fuel | |
parent | fc1477a5e965cff4b6aa128b90246da8e2775e1b (diff) |
Change mirror rsync check
Checking if rsync is enabled on remote host is not enough.
Change-Id: I478c32a407af7ea01f90c45adcafdf99b6ba1782
Signed-off-by: Michal Skalski <mskalski@mirantis.com>
(cherry picked from commit acbb3b26c855ff35c8774eff8cd696b0198f9ac8)
Diffstat (limited to 'fuel')
-rw-r--r-- | fuel/build/f_isoroot/f_repobuild/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuel/build/f_isoroot/f_repobuild/Makefile b/fuel/build/f_isoroot/f_repobuild/Makefile index 8722cbb..6bfbd35 100644 --- a/fuel/build/f_isoroot/f_repobuild/Makefile +++ b/fuel/build/f_isoroot/f_repobuild/Makefile @@ -17,7 +17,7 @@ DOCKVERSION = 1.0 # https://bugs.launchpad.net/fuel/+bug/1459252 MIRROR_URLS := $(shell curl -s http://mirrors.ubuntu.com/mirrors.txt) MIRROR_HOSTS := $(shell for url in ${MIRROR_URLS}; do echo $$url | cut -d'/' -f3; done) -RSYNC_HOST := $(shell for host in ${MIRROR_HOSTS}; do echo > /dev/tcp/$${host}/873 && echo $$host && break; done) +RSYNC_HOST := $(shell for host in ${MIRROR_HOSTS}; do rsync -4 --contimeout 5 --no-motd --list-only "$${host}::ubuntu/." &> /dev/null && echo $$host && break; done) .PHONY: all all: .nailgun |