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

« back to all changes in this revision

Viewing changes to bin/ubuntu-cloudimg-query

  • 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:
178
178
                [a-z][1-9].[0-9a-z]*|c[cg][1-9].*)
179
179
                        itype="$i";
180
180
                        case "${i}" in
181
 
                                t1.micro) store=ebs;; # t1.micro does not imply arch
182
 
                                m1.small|c1.medium) arch=i386;;
183
 
                                *) arch=amd64;;
 
181
                                t1.micro) store=ebs;; # t1.micro only supports ebs
184
182
                        esac
185
183
                        ;;
186
184
                http://*|https://*) burl=${i};;