summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémie Astori <jeremie@astori.fr>2015-08-19 00:24:08 +0000
committerJérémie Astori <jeremie@astori.fr>2015-08-19 00:24:08 +0000
commit50c6425673ebe70a44e9c48165828a058cabcd72 (patch)
treeb0bc13a2b764a15f7ed42cd33f4e1fe28fd1599d
parent5913f5e5e125a871f68ae8564a8e14a634b89635 (diff)
downloadansible-modules-core-50c6425673ebe70a44e9c48165828a058cabcd72.tar.gz
Fix minor whitespace issues
-rw-r--r--files/acl.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/files/acl.py b/files/acl.py
index 8b93da16..14851225 100644
--- a/files/acl.py
+++ b/files/acl.py
@@ -21,7 +21,7 @@ module: acl
version_added: "1.4"
short_description: Sets and retrieves file ACL information.
description:
- - Sets and retrieves file ACL information.
+ - Sets and retrieves file ACL information.
notes:
- As of Ansible 2.0, this module only supports Linux distributions.
options:
@@ -122,6 +122,7 @@ acl:
sample: [ "user::rwx", "group::rwx", "other::rwx" ]
'''
+
def split_entry(entry):
''' splits entry and ensures normalized return'''
@@ -161,7 +162,7 @@ def build_entry(etype, entity, permissions=None):
def build_command(module, mode, path, follow, default, recursive, entry=''):
- '''Builds and returns agetfacl/setfacl command.'''
+ '''Builds and returns a getfacl/setfacl command.'''
if mode == 'set':
cmd = [module.get_bin_path('setfacl', True)]
cmd.append('-m "%s"' % entry)