summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/POSIXCompat.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-06-13 14:58:05 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-06-13 14:58:05 -0400
commita03fde3ea32d3eb2cadb443454749111dda1797f (patch)
tree6984ab73962c8384905915da6c0a26d77778f3a3 /src/lib/Bcfg2/Server/Plugins/POSIXCompat.py
parentfbf6edf62b7b105abb467ef5cb9254eb8f5396c6 (diff)
downloadbcfg2-a03fde3ea32d3eb2cadb443454749111dda1797f.tar.gz
bcfg2-a03fde3ea32d3eb2cadb443454749111dda1797f.tar.bz2
bcfg2-a03fde3ea32d3eb2cadb443454749111dda1797f.zip
do not create data directories for plugins that don't need them
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/POSIXCompat.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/POSIXCompat.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/POSIXCompat.py b/src/lib/Bcfg2/Server/Plugins/POSIXCompat.py
index 1736becc7..71128d64c 100644
--- a/src/lib/Bcfg2/Server/Plugins/POSIXCompat.py
+++ b/src/lib/Bcfg2/Server/Plugins/POSIXCompat.py
@@ -9,6 +9,8 @@ class POSIXCompat(Bcfg2.Server.Plugin.Plugin,
Bcfg2.Server.Plugin.GoalValidator):
"""POSIXCompat is a goal validator plugin for POSIX entries."""
+ create = False
+
def __init__(self, core, datastore):
Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore)
Bcfg2.Server.Plugin.GoalValidator.__init__(self)