~tribaal/txaws/xss-hardening

« back to all changes in this revision

Viewing changes to bin/txaws-discover

Merged 424018-add-keypair-support [r=jkakar] [f=424018]

This change implements three keypair methods in the EC2 client:
 1. describe_keypairs
 2. create_keypair
 3. delete_keypair

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
 
3
 
# Copyright (C) 2010 Jamu Kakar <jkakar@kakar.ca>
4
 
# Licenced under the txaws licence available at /LICENSE in the txaws source.
5
 
 
6
 
import os
7
 
import sys
8
 
 
9
 
if os.path.isdir("txaws"):
10
 
    sys.path.insert(0, ".")
11
 
 
12
 
from txaws.client.discover.entry_point import main
13
 
 
14
 
 
15
 
sys.exit(main(sys.argv))