summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Connon <conan@irconan.co.uk>2014-02-04 20:05:24 +0000
committerRichard Connon <conan@irconan.co.uk>2014-02-04 20:05:24 +0000
commit86f4766fd357c79956cd95b0506d1c85da96416d (patch)
tree508eeceb2395a5f2e0a145db594b62ca30d0a438
parentbfdf4e9cac0c5d93cf7ce63513557847f005d5d2 (diff)
downloadbcfg2-86f4766fd357c79956cd95b0506d1c85da96416d.tar.gz
bcfg2-86f4766fd357c79956cd95b0506d1c85da96416d.tar.bz2
bcfg2-86f4766fd357c79956cd95b0506d1c85da96416d.zip
docstring for new sub-method
-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: