filter out install objects when running config

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
remotes/origin/4.0-pre-not-stable
Steven Armstrong 12 years ago
parent 82612bc312
commit 4ace4348a7
  1. 5
      cdist/config.py

5
cdist/config.py vendored

@ -162,7 +162,10 @@ class Config(object):
"""Short name for object list retrieval"""
for cdist_object in core.CdistObject.list_objects(self.local.object_path,
self.local.type_path):
yield cdist_object
if cdist_object.cdist_type.is_install:
self.log.debug("Running in config mode, ignoring install object: {0}".format(cdist_object))
else:
yield cdist_object
def iterate_once(self):
"""

Loading…
Cancel
Save