X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=nm.py;h=55315541f1cb3e4d3f8c5acd42b282424730dc70;hb=refs%2Fheads%2F1.8;hp=85c9004fedf6f606f42a09f894509974ed38dbeb;hpb=6d65ae5c5fd545f02a92582b3ff8d961b46da0d4;p=nodemanager.git diff --git a/nm.py b/nm.py index 85c9004..5531554 100755 --- a/nm.py +++ b/nm.py @@ -85,7 +85,11 @@ def getPLCDefaults(data, config): if len(attr_dict): logger.verbose("Found default slice overrides.\n %s" % attr_dict) config.OVERRIDES = attr_dict - elif 'OVERRIDES' in dir(config): del config.OVERRIDES + return + # NOTE: if an _default slice existed, it would have been found above and + # the routine would return. Thus, if we've gotten here, then no default + # slice is bound to this node. + if 'OVERRIDES' in dir(config): del config.OVERRIDES def run():