diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 291: change options to wget in the wget|tar step to be somewhat but not too verbose

Message ID 20120517202609.18575.6107.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Michael-Doyle Hudson May 17, 2012, 8:26 p.m. UTC
Merge authors:
  Michael Hudson-Doyle (mwhudson)
Related merge proposals:
  https://code.launchpad.net/~mwhudson/lava-dispatcher/more-wget-tar-debugging-bug-996229/+merge/106115
  proposed by: Michael Hudson-Doyle (mwhudson)
  review: Approve - Yongqin Liu (liuyq0307)
------------------------------------------------------------
revno: 291 [merge]
committer: Michael Hudson-Doyle <michael.hudson@linaro.org>
branch nick: trunk
timestamp: Fri 2012-05-18 08:18:31 +1200
message:
  change options to wget in the wget|tar step to be somewhat but not too verbose
modified:
  lava_dispatcher/client/master.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/client/master.py'
--- lava_dispatcher/client/master.py	2012-05-09 07:16:32 +0000
+++ lava_dispatcher/client/master.py	2012-05-17 05:34:45 +0000
@@ -74,7 +74,7 @@ 
     elif tarball_url.endswith('.bz2'):
         decompression_char = 'j'
     session.run(
-        'wget --connect-timeout=30 -nv -O- %s |tar --numeric-owner -C %s -x%sf -' % (
+        'wget --connect-timeout=30 -S -O- %s --progress=dot -e dotbytes=2M | tar --numeric-owner -C %s -x%sf -' % (
             tarball_url, dest, decompression_char),
         timeout=timeout)