~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/devscripts/ec2test/account.py

  • Committer: Steve Kowalik
  • Date: 2011-08-07 04:05:52 UTC
  • mto: This revision was merged to the branch mainline in revision 13626.
  • Revision ID: stevenk@ubuntu.com-20110807040552-mwnxo0flmhvl35e8
Correct the notification based on review comments, and remove request{,ed}
from the function names, switching to create{,d}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
import urllib
19
19
 
20
20
from boto.exception import EC2ResponseError
 
21
from devscripts.ec2test.session import EC2SessionName
21
22
import paramiko
22
23
 
23
 
from devscripts.ec2test.session import EC2SessionName
24
 
 
25
24
 
26
25
VALID_AMI_OWNERS = {
27
 
    # Amazon account number: name/nickname (only for logging).
28
26
    '255383312499': 'gary',
29
27
    '559320013529': 'flacoste',
 
28
    '200337130613': 'mwhudson',
 
29
    '889698597288': 'henninge',
 
30
    '366009196755': 'salgado',
 
31
    '036590675370': 'jml',
30
32
    '038531743404': 'jelmer',
31
33
    '444667466231': 'allenap',
32
34
    '441991801793': 'gmb',
34
36
    '967591634984': 'jtv',
35
37
    '507541322704': 'sinzui',
36
38
    '424228475252': 'wallyworld',
37
 
    '292290876294': 'stevenk',
38
 
    '259696152397': 'bac',
39
 
    '873925794399': 'wgrant',
40
 
    '957911449157': 'mbp',
41
39
    # ...anyone else want in on the fun?
42
40
    }
43
41