X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fopenstack%2Fshell.py;h=fb6320a7da3917b45ba24585e750529a6fdbb6ad;hb=eabad1f49b519d0a7b73a2644c14a94e87545dda;hp=e31be9dcd90b40976ee19d8da3a3619c6fd72773;hpb=06768bd605e5d47fadfc90a35c74e30f267226a5;p=sfa.git diff --git a/sfa/openstack/shell.py b/sfa/openstack/shell.py index e31be9dc..fb6320a7 100644 --- a/sfa/openstack/shell.py +++ b/sfa/openstack/shell.py @@ -12,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)