Merge pull request #3654 from mscherer/fix_acl_error

Testing the module on freebsd fail, since module is not assigned yet
reviewable/pr18780/r1
Toshio Kuratomi 8 years ago
commit b775d8b8dd

@ -218,9 +218,6 @@ def run_acl(module, cmd, check_rc=True):
def main():
if get_platform().lower() != 'linux':
module.fail_json(msg="The acl module is only available for Linux distributions.")
module = AnsibleModule(
argument_spec=dict(
name=dict(required=True, aliases=['path'], type='path'),
@ -245,6 +242,9 @@ def main():
supports_check_mode=True,
)
if get_platform().lower() != 'linux':
module.fail_json(msg="The acl module is only available for Linux distributions.")
path = module.params.get('name')
entry = module.params.get('entry')
entity = module.params.get('entity')

Loading…
Cancel
Save