X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sm.py;h=c5384c31a19bf1b0248c60f2cc471c23c95d7cd2;hb=72398ebdc27c80196e57058f4c31f18dc8d43058;hp=45644d856c2c54189ca3939b30e0c869cd1e6827;hpb=25ad8e7b05e0b76a9ff5ec579fab58a970f06137;p=nodemanager.git diff --git a/sm.py b/sm.py index 45644d8..c5384c3 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')) @@ -134,6 +135,7 @@ def GetSlivers(data, fullupdate=True): database.db.deliver_record(rec) if fullupdate: database.db.set_min_timestamp(data['timestamp']) + # slivers are created here. database.db.sync() accounts.Startingup = False @@ -145,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