~ubuntu-branches/ubuntu/trusty/cloud-utils/trusty-proposed

« back to all changes in this revision

Viewing changes to bin/cloud-publish-tarball

  • Committer: Package Import Robot
  • Author(s): Scott Moser
  • Date: 2012-03-09 17:02:53 UTC
  • Revision ID: package-import@ubuntu.com-20120309170253-iw2snvzkqqkf8ory
Tags: 0.25-0ubuntu5
* cloud-publish-tarball, cloud-publish-image: be more quiet
  when downloading images by using wget --progress=dot:mega
* ubuntu-cloudimg-query, ubuntu-ec2-run: support m1.medium ec2 size
  and do not assume m1.small or c1.medium imply i386.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        local qflag="-q"
89
89
        [ "$quiet" = "0" ] && qflag=""
90
90
 
91
 
        wget $qflag "$url" -O "$target" ||
 
91
        wget $qflag --progress=dot:mega "$url" -O "$target" ||
92
92
                return 1
93
93
}
94
94