Issue 8502: Fixed bug where failed when permissions weren't specified.

This commit is contained in:
Piffey Parlance 2014-08-09 12:02:24 -05:00
parent 3d22e769d4
commit cb0b06aa42

View file

@ -211,11 +211,14 @@ def main():
entry = module.params.get('entry')
entity = module.params.get('entity')
etype = module.params.get('etype')
permissions = normalize_permissions(module.params.get('permissions'))
permissions = module.params.get('permissions')
state = module.params.get('state')
follow = module.params.get('follow')
default = module.params.get('default')
if permissions:
permissions = normalize_permissions(permissions)
if not os.path.exists(path):
module.fail_json(msg="path not found or not accessible!")