summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/GroupLogic.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-09-23 09:23:45 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-09-23 09:23:45 -0400
commit3987c0ed6e554231d4534347f4a35d5fae91cb5c (patch)
tree70a9144e721012d0eb98c280da848bd15639c420 /src/lib/Bcfg2/Server/Plugins/GroupLogic.py
parent2563b59598c5be20a2b03f6091969575d52f2a7a (diff)
downloadbcfg2-3987c0ed6e554231d4534347f4a35d5fae91cb5c.tar.gz
bcfg2-3987c0ed6e554231d4534347f4a35d5fae91cb5c.tar.bz2
bcfg2-3987c0ed6e554231d4534347f4a35d5fae91cb5c.zip
GroupLogic: sort after other plugins so GroupLogic can use, e.g., Probe groups
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/GroupLogic.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/GroupLogic.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/GroupLogic.py b/src/lib/Bcfg2/Server/Plugins/GroupLogic.py
index e581ebc6a..ab10776da 100644
--- a/src/lib/Bcfg2/Server/Plugins/GroupLogic.py
+++ b/src/lib/Bcfg2/Server/Plugins/GroupLogic.py
@@ -36,6 +36,9 @@ class GroupLogic(Bcfg2.Server.Plugin.Plugin,
""" GroupLogic is a connector plugin that lets you use an XML
Genshi template to dynamically set additional groups for
clients. """
+ # perform grouplogic later than other Connector plugins, so it can
+ # use groups set by them
+ sort_order = 1000
def __init__(self, core, datastore):
Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore)