X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fopenstack%2Fshell.py;h=fb6320a7da3917b45ba24585e750529a6fdbb6ad;hb=04a3f20dc71bf8b3f96b1e3172623aa346a638a7;hp=acb9cff5115fed4bfc7d14dfee94a039497ebabc;hpb=97d09a321eff49c73c09f44a10d1ae0d7767d250;p=sfa.git diff --git a/sfa/openstack/shell.py b/sfa/openstack/shell.py index acb9cff5..fb6320a7 100644 --- a/sfa/openstack/shell.py +++ b/sfa/openstack/shell.py @@ -1,5 +1,4 @@ import sys -import xmlrpclib import socket import gettext from urlparse import urlparse @@ -13,24 +12,23 @@ except: has_nova = False - class Shell: """ A simple native shell to a nova backend. This class can receive all nova calls to the underlying testbed """ - - # dont care about limiting calls yet + + # dont care about limiting calls yet direct_calls = [] alias_calls = {} - - # use the 'capability' auth mechanism for higher performance when the PLC db is local - def __init__ ( self, config=None) : + # use the 'capability' auth mechanism for higher performance when the PLC + # db is local + def __init__(self, config=None): if not config: config = Config() if has_nova: - # instantiate managers + # instantiate managers self.auth_manager = KeystoneClient(config=config) self.image_manager = GlanceClient(config=config) self.nova_manager = NovaClient(config=config)