Home | Trees | Indices | Help |
|
---|
|
1 #!/usr/bin/env python 2 3 from completers import InstanceCompleter 4 57 """ 8 showconsole <instance-id> 9 10 Show console output for an EC2 instance 11 12 Example: 13 14 $ starcluster showconsole i-999999 15 16 This will display the startup logs for instance i-999999 17 """ 18 names = ['showconsole', 'sc'] 192521 if not len(args) == 1: 22 self.parser.error('please provide an instance id') 23 instance_id = args[0] 24 self.ec2.show_console_output(instance_id)
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Jun 16 16:31:28 2011 | http://epydoc.sourceforge.net |