X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sm.py;h=d8a0aca2aac67a71e082b0a422086f1aae47b242;hb=75db8a1a1e14adc7715c452fab87e45f942d425b;hp=9ba2c383d91203b0bc25ca4b39dafd3540f8c047;hpb=5c00a570abc223d58b171bc88b072085d69fa232;p=nodemanager.git diff --git a/sm.py b/sm.py index 9ba2c38..d8a0aca 100644 --- a/sm.py +++ b/sm.py @@ -15,7 +15,7 @@ import accounts import api import api_calls import database -import delegate +import controller import logger import sliver_vs import string,re @@ -97,12 +97,13 @@ def GetSlivers(data, fullupdate=True): keys = rec.pop('keys') rec.setdefault('keys', '\n'.join([key_struct['key'] for key_struct in keys])) + ## 'Type' isn't returned by GetSlivers() for whatever reason. We're overloading + ## instantiation here, but i suppose its the ssame thing when you think about it. -FA # Handle nm controller here - rec.setdefault('type', attr_dict.get('type', 'sliver.VServer')) - if rec['instantiation'] == 'nm-controller': - # type isn't returned by GetSlivers() for whatever reason. We're overloading - # instantiation here, but i suppose its the ssame thing when you think about it. -FA - rec['type'] = 'delegate' + if rec['instantiation'].lower() == 'nm-controller': + rec.setdefault('type', attr_dict.get('type', 'controller.Controller')) + else: + rec.setdefault('type', attr_dict.get('type', 'sliver.VServer')) # set the vserver reference. If none, set to default. rec.setdefault('vref', attr_dict.get('vref', 'default')) @@ -127,8 +128,14 @@ def GetSlivers(data, fullupdate=True): except (KeyError, ValueError): amt = default_amt rspec[resname] = amt + # add in sysctl attributes into the rspec + for key in attr_dict.keys(): + if key.find("sysctl.") == 0: + rspec[key] = attr_dict[key] + database.db.deliver_record(rec) if fullupdate: database.db.set_min_timestamp(data['timestamp']) + # slivers are created here. database.db.sync() accounts.Startingup = False @@ -140,7 +147,7 @@ def start(options, config): DEFAULT_ALLOCATION[resname]=default_amt accounts.register_class(sliver_vs.Sliver_VS) - accounts.register_class(delegate.Delegate) + accounts.register_class(controller.Controller) accounts.Startingup = options.startup database.start() api_calls.deliver_ticket = deliver_ticket