~nijaba/vmbuilder/rawsize-lp303882

« back to all changes in this revision

Viewing changes to VMBuilder/plugins/ec2/__init__.py

  • Committer: Soren Hansen
  • Date: 2008-10-23 21:11:22 UTC
  • Revision ID: soren@canonical.com-20081023211122-kmes2wxdp61d0tr9
Make the CLI plugin automatically echo the config option is it's not completely obvious.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
        group.add_option('--ec2-bucket', metavar='BUCKET', help='S3 bucket to hold the AMI.')
35
35
        group.add_option('--ec2-access-key', metavar='ACCESS_ID', help='AWS access key ID.')
36
36
        group.add_option('--ec2-secret-key', metavar='SECRET_ID', help='AWS secret access key.')
37
 
        group.add_option('--ec2-kernel','--ec2-aki', metavar='EC2_KERNEL', help='EC2 AKI (kernel) to use.')
38
 
        group.add_option('--ec2-ramdisk','--ec2-ari', metavar='EC2_RAMDISK', help='EC2 ARI (ramdisk) to use.')
 
37
        group.add_option('--ec2-kernel','--ec2-aki', metavar='AKI', help='EC2 AKI (kernel) to use.')
 
38
        group.add_option('--ec2-ramdisk','--ec2-ari', metavar='ARI', help='EC2 ARI (ramdisk) to use.')
39
39
        self.vm.register_setting_group(group)
40
40
 
41
41
    def preflight_check(self):