add support for netconfig aspect
authorsmbaker <smbaker@fc8-storktest.lan>
Mon, 27 May 2013 21:59:27 +0000 (14:59 -0700)
committersmbaker <smbaker@fc8-storktest.lan>
Mon, 27 May 2013 21:59:27 +0000 (14:59 -0700)
PLC/API.py

index 6cab28e..201de2d 100644 (file)
@@ -155,6 +155,9 @@ class PLCAPI:
             from aspects import apply_ratelimit_aspect
             apply_ratelimit_aspect()
 
+        if getattr(self.config, "PLC_NETCONFIG_ENABLED", False):
+            from aspects.netconfigaspects import apply_netconfig_aspect
+            apply_netconfig_aspect()
 
         # Enable Caching. Only for GetSlivers for the moment.
         # TODO: we may consider to do this in an aspect like the ones above.