summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2016-08-09 20:53:50 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2018-10-18 16:20:14 +0200
commit3cf95064ad0f73cb2aeb471387ac8f2e87fe443f (patch)
treea5827250a051012bc26236441c819a92a070a479
parent6c3932c0d572ddf62178fa25af68ae56b77b80c6 (diff)
parent79838c23f2d9b2615c11fa460ed972ad6833c6fd (diff)
downloadbcfg2-3cf95064ad0f73cb2aeb471387ac8f2e87fe443f.tar.gz
bcfg2-3cf95064ad0f73cb2aeb471387ac8f2e87fe443f.tar.bz2
bcfg2-3cf95064ad0f73cb2aeb471387ac8f2e87fe443f.zip
Merge branch 'add-directory-ignore' into HEAD
* add-directory-ignore: Server: Ignore directories containing a .bcfg2-ignore file
-rw-r--r--doc/releases/1.4.0pre2.txt3
-rw-r--r--src/lib/Bcfg2/Server/Plugin/helpers.py4
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/releases/1.4.0pre2.txt b/doc/releases/1.4.0pre2.txt
index 103af1a0a..5694fe8b4 100644
--- a/doc/releases/1.4.0pre2.txt
+++ b/doc/releases/1.4.0pre2.txt
@@ -46,6 +46,9 @@ backwards-incompatible user-facing changes
your queries default to the class names and the Ldap plugin expires
the metadata caches if the config file changes.
+* Ignore directories containing a .bcfg2-ignore file in various plugins
+ (Bundler, Defaults, Pkgmgr, Properties, PuppetENC, TemplateHelper, Trigger).
+
Thanks
------
diff --git a/src/lib/Bcfg2/Server/Plugin/helpers.py b/src/lib/Bcfg2/Server/Plugin/helpers.py
index 762d018eb..ca0fe8188 100644
--- a/src/lib/Bcfg2/Server/Plugin/helpers.py
+++ b/src/lib/Bcfg2/Server/Plugin/helpers.py
@@ -456,7 +456,9 @@ class DirectoryBacked(Debuggable):
# again without having to add a new monitor.
elif os.path.isdir(abspath):
# Deal with events for directories
- if action in ['exists', 'created']:
+ if os.path.exists(os.path.join(abspath, '.bcfg2-ignore')):
+ self.logger.debug("Ignoring directory %s" % abspath)
+ elif action in ['exists', 'created']:
self.add_directory_monitor(relpath)
elif action == 'changed':
if relpath in self.entries: