summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-10-17 15:17:03 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-10-17 15:17:08 -0400
commit3cf1f738c0a474e21ce56604ad874241584d59e9 (patch)
tree50aafe6501d1c48ef8bf91140808adef8b912da0 /src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py
parent63ca36cc3569bc5b31ffd9203d8f9d591eb9c21c (diff)
downloadbcfg2-3cf1f738c0a474e21ce56604ad874241584d59e9.tar.gz
bcfg2-3cf1f738c0a474e21ce56604ad874241584d59e9.tar.bz2
bcfg2-3cf1f738c0a474e21ce56604ad874241584d59e9.zip
assigned Cfg handlers explicit priorities to avoid over-zealous regex matches
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py b/src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py
index 92fb06ee9..42e1fd7c3 100644
--- a/src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py
+++ b/src/lib/Bcfg2/Server/Plugins/Cfg/CfgPlaintextGenerator.py
@@ -12,4 +12,7 @@ class CfgPlaintextGenerator(CfgGenerator):
files. The base Generator class already implements this
functionality, so CfgPlaintextGenerator doesn't need to do
anything itself."""
- pass
+
+ #: Very low priority to avoid matching host- or group-specific
+ #: files with other extensions -- e.g., .genshi, .crypt, etc.
+ __priority__ = 100