Testing the module on freebsd fail, since module is not assigned yet

pull/18777/head
Michael Scherer 9 years ago committed by Matt Clay
parent 98c729bfd7
commit f423554e20

@ -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