diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-12 19:22:19 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-12 20:56:39 +0200 |
commit | 982c4b453db72df8bb11db3187a19ef51b3a708e (patch) | |
tree | 30d2e24763962e19ab0647e20cdf077c718d09e3 /bin | |
parent | 093579017eb890caf5f2278f273200750f736f7e (diff) | |
download | jenkins.debian.net-982c4b453db72df8bb11db3187a19ef51b3a708e.tar.xz |
reproducible_openwrt|lede: add verbose to rsync
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index 042a47e8..82ba484e 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -308,8 +308,8 @@ build_two_times() { ssh $GENERIC_NODE2 reproducible_$TYPE node node_create_tmpdirs $TMPDIR # download and prepare openwrt on node b1 ssh $GENERIC_NODE1 reproducible_$TYPE node openwrt_download $TYPE $TARGET $CONFIG $TMPDIR - rsync -a $GENERIC_NODE1:$TMPDIR/download/ $TMPDIR/download/ - rsync -a $TMPDIR/download/ $GENERIC_NODE2:$TMPDIR/download/ + rsync -av $GENERIC_NODE1:$TMPDIR/download/ $TMPDIR/download/ + rsync -av $TMPDIR/download/ $GENERIC_NODE2:$TMPDIR/download/ ## first run RUN=b1 @@ -317,7 +317,7 @@ build_two_times() { ssh $GENERIC_NODE1 reproducible_$TYPE node openwrt_get_banner $TMPDIR $TYPE > $BANNER_HTML # rsync back logs and images - rsync -a $GENERIC_NODE1:$TMPDIR/$RUN/ $TMPDIR/$RUN/ + rsync -av $GENERIC_NODE1:$TMPDIR/$RUN/ $TMPDIR/$RUN/ ssh $GENERIC_NODE1 reproducible_$TYPE node node_cleanup_tmpdirs $TMPDIR ## second run @@ -325,6 +325,6 @@ build_two_times() { ssh $GENERIC_NODE2 reproducible_$TYPE node openwrt_build $TYPE $RUN $TARGET $CONFIG $TMPDIR # rsync back logs and images - rsync -a $GENERIC_NODE2:$TMPDIR/$RUN/ $TMPDIR/$RUN/ + rsync -av $GENERIC_NODE2:$TMPDIR/$RUN/ $TMPDIR/$RUN/ ssh $GENERIC_NODE2 reproducible_$TYPE node node_cleanup_tmpdirs $TMPDIR } |