summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py')
-rw-r--r--src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py b/src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py
index cda9a1e3b..55f3d5cf7 100644
--- a/src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py
+++ b/src/lib/Bcfg2/Client/Tools/POSIX/Augeas.py
@@ -158,6 +158,8 @@ class POSIXAugeas(POSIXTool):
def get_commands(self, entry, unverified=False):
rv = []
for cmd in entry.iterchildren():
+ if unverified and cmd.get("verified", "false") != "false":
+ continue
if cmd.tag in globals():
rv.append(globals()[cmd.tag](cmd, self.get_augeas(entry),
self.logger))