~ubuntu-branches/ubuntu/natty/eucalyptus/natty-201103250208

« back to all changes in this revision

Viewing changes to clc/tools/src/euca-describe-groups

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2010-08-19 20:19:34 UTC
  • mfrom: (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20100819201934-iaffjhaku4epb11i
Tags: 2.0~bzr1233-0ubuntu1
* New upstream snapshot, -r1233, fixes:
  - LP: #619970 - more robust Date: generation on NC

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
import getopt, sys, os, boto
3
 
from boto.ec2.regioninfo import RegionInfo
4
 
from euca_admin.groups import Group
5
 
 
6
 
def main():
7
 
  c = Group()
8
 
  parser = c.get_describe_parser()
9
 
  (options, args) = parser.parse_args()
10
 
  c.describe()
11
 
  sys.exit()
12
 
 
13
 
if __name__ == "__main__":
14
 
  main()
15