summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Bcfg2/Client/Tools/POSIX/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Client/Tools/POSIX/base.py b/src/lib/Bcfg2/Client/Tools/POSIX/base.py
index d4051ba7f..0eb9239c5 100644
--- a/src/lib/Bcfg2/Client/Tools/POSIX/base.py
+++ b/src/lib/Bcfg2/Client/Tools/POSIX/base.py
@@ -643,6 +643,8 @@ class POSIXTool(Bcfg2.Client.Tools.Tool):
""" verify POSIX ACLs on the given entry. return True if all
ACLS are correct, false otherwise """
def _verify_acl(aclkey, perms):
+ """ Given ACL data, process it appropriately and add it to
+ missing or wrong lists if appropriate """
if aclkey not in existing:
missing.append(self._acl2string(aclkey, perms))
elif existing[aclkey] != perms: