Commit ad837709 by James Tanner

Addresses #5023 Fix import comments

parent 6000d636
...@@ -293,7 +293,7 @@ def main(): ...@@ -293,7 +293,7 @@ def main():
module.exit_json(**result) module.exit_json(**result)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -419,7 +419,7 @@ def main(): ...@@ -419,7 +419,7 @@ def main():
except (DoError, Exception) as e: except (DoError, Exception) as e:
module.fail_json(msg=str(e)) module.fail_json(msg=str(e))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -479,7 +479,7 @@ def main(): ...@@ -479,7 +479,7 @@ def main():
changed = manager.has_changed() changed = manager.has_changed()
module.exit_json(failed=True, changed=changed, msg=repr(e)) module.exit_json(failed=True, changed=changed, msg=repr(e))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -413,7 +413,7 @@ def main(): ...@@ -413,7 +413,7 @@ def main():
module.fail_json(msg="Bucket and Object parameters must be set", failed=True) module.fail_json(msg="Bucket and Object parameters must be set", failed=True)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -416,7 +416,7 @@ def main(): ...@@ -416,7 +416,7 @@ def main():
print json.dumps(json_output) print json.dumps(json_output)
sys.exit(0) sys.exit(0)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -327,7 +327,7 @@ def main(): ...@@ -327,7 +327,7 @@ def main():
print json.dumps(json_output) print json.dumps(json_output)
sys.exit(0) sys.exit(0)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -267,7 +267,7 @@ def main(): ...@@ -267,7 +267,7 @@ def main():
print json.dumps(json_output) print json.dumps(json_output)
sys.exit(0) sys.exit(0)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -249,7 +249,7 @@ def main(): ...@@ -249,7 +249,7 @@ def main():
print json.dumps(json_output) print json.dumps(json_output)
sys.exit(0) sys.exit(0)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -385,7 +385,7 @@ def dispatch(keystone, user=None, password=None, tenant=None, ...@@ -385,7 +385,7 @@ def dispatch(keystone, user=None, password=None, tenant=None,
return dict(changed=changed, id=id) return dict(changed=changed, id=id)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
if __name__ == '__main__': if __name__ == '__main__':
main() main()
...@@ -482,7 +482,7 @@ def main(): ...@@ -482,7 +482,7 @@ def main():
linodeServers(module, api, state, name, plan, distribution, datacenter, linode_id, linodeServers(module, api, state, name, plan, distribution, datacenter, linode_id,
payment_term, password, ssh_pub_key, swap, wait, wait_timeout) payment_term, password, ssh_pub_key, swap, wait, wait_timeout)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -533,7 +533,7 @@ def main(): ...@@ -533,7 +533,7 @@ def main():
module.exit_json(changed=True, instance=d) module.exit_json(changed=True, instance=d)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -477,6 +477,6 @@ def main(): ...@@ -477,6 +477,6 @@ def main():
module.exit_json(**result) module.exit_json(**result)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -213,6 +213,6 @@ def main(): ...@@ -213,6 +213,6 @@ def main():
module.exit_json(changed=True, user=user) module.exit_json(changed=True, user=user)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -301,6 +301,6 @@ def main(): ...@@ -301,6 +301,6 @@ def main():
module.exit_json(changed=changed, db=db) module.exit_json(changed=changed, db=db)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -363,6 +363,6 @@ def main(): ...@@ -363,6 +363,6 @@ def main():
else: else:
module.exit_json(msg="Slave already stopped", changed=False) module.exit_json(msg="Slave already stopped", changed=False)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -461,6 +461,6 @@ def main(): ...@@ -461,6 +461,6 @@ def main():
changed = False changed = False
module.exit_json(changed=changed, user=user) module.exit_json(changed=changed, user=user)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -211,6 +211,6 @@ def main(): ...@@ -211,6 +211,6 @@ def main():
else: else:
module.fail_json(msg=result, changed=False) module.fail_json(msg=result, changed=False)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -269,6 +269,6 @@ def main(): ...@@ -269,6 +269,6 @@ def main():
module.exit_json(changed=changed, db=db) module.exit_json(changed=changed, db=db)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -607,6 +607,6 @@ def main(): ...@@ -607,6 +607,6 @@ def main():
module.exit_json(changed=changed) module.exit_json(changed=changed)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -481,6 +481,6 @@ def main(): ...@@ -481,6 +481,6 @@ def main():
kw['changed'] = changed kw['changed'] = changed
module.exit_json(**kw) module.exit_json(**kw)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -276,6 +276,6 @@ def main(): ...@@ -276,6 +276,6 @@ def main():
else: else:
module.fail_json(msg='A valid command must be provided') module.fail_json(msg='A valid command must be provided')
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -249,7 +249,7 @@ def main(): ...@@ -249,7 +249,7 @@ def main():
module.exit_json(**result) module.exit_json(**result)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -191,7 +191,7 @@ def main(): ...@@ -191,7 +191,7 @@ def main():
msg="%s. %d entries changed" % (msg,changes) msg="%s. %d entries changed" % (msg,changes)
module.exit_json(changed=changed, msg=msg, acl=currentacl) module.exit_json(changed=changed, msg=msg, acl=currentacl)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -173,7 +173,7 @@ def main(): ...@@ -173,7 +173,7 @@ def main():
# Mission complete # Mission complete
module.exit_json(src=src, dest=dest, md5sum=destmd5, changed=changed, msg="OK") module.exit_json(src=src, dest=dest, md5sum=destmd5, changed=changed, msg="OK")
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
......
...@@ -184,6 +184,6 @@ def main(): ...@@ -184,6 +184,6 @@ def main():
module.exit_json(**res_args) module.exit_json(**res_args)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -349,7 +349,7 @@ def main(): ...@@ -349,7 +349,7 @@ def main():
else: else:
module.fail_json(path=path, msg='unexpected position reached') module.fail_json(path=path, msg='unexpected position reached')
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -184,6 +184,6 @@ def main(): ...@@ -184,6 +184,6 @@ def main():
# Mission complete # Mission complete
module.exit_json(dest=dest, changed=changed, msg="OK") module.exit_json(dest=dest, changed=changed, msg="OK")
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -356,7 +356,7 @@ def main(): ...@@ -356,7 +356,7 @@ def main():
absent(module, dest, params['regexp'], params.get('line', None), backup) absent(module, dest, params['regexp'], params.get('line', None), backup)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -133,7 +133,7 @@ def main(): ...@@ -133,7 +133,7 @@ def main():
module.exit_json(changed=False, stat=d) module.exit_json(changed=False, stat=d)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -194,6 +194,6 @@ def main(): ...@@ -194,6 +194,6 @@ def main():
module.exit_json(**res_args) module.exit_json(**res_args)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -200,7 +200,7 @@ def main(): ...@@ -200,7 +200,7 @@ def main():
module.exit_json(changed=changed, msg=msg, xattr=res) module.exit_json(changed=changed, msg=msg, xattr=res)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -94,6 +94,6 @@ def main(): ...@@ -94,6 +94,6 @@ def main():
module.exit_json(**data) module.exit_json(**data)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -146,6 +146,6 @@ def main(): ...@@ -146,6 +146,6 @@ def main():
module.exit_json(changed=changed, component=component, name=name, vhost=vhost, state=state) module.exit_json(changed=changed, component=component, name=name, vhost=vhost, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -125,6 +125,6 @@ def main(): ...@@ -125,6 +125,6 @@ def main():
changed = len(enabled) > 0 or len(disabled) > 0 changed = len(enabled) > 0 or len(disabled) > 0
module.exit_json(changed=changed, enabled=enabled, disabled=disabled) module.exit_json(changed=changed, enabled=enabled, disabled=disabled)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -243,6 +243,6 @@ def main(): ...@@ -243,6 +243,6 @@ def main():
module.exit_json(changed=changed, user=username, state=state) module.exit_json(changed=changed, user=username, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -141,6 +141,6 @@ def main(): ...@@ -141,6 +141,6 @@ def main():
module.exit_json(changed=changed, name=name, state=state) module.exit_json(changed=changed, name=name, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -126,7 +126,7 @@ def main(): ...@@ -126,7 +126,7 @@ def main():
else: else:
module.fail_json(msg="HTTP result code: %d" % result.code) module.fail_json(msg="HTTP result code: %d" % result.code)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -133,6 +133,6 @@ def post_event(module): ...@@ -133,6 +133,6 @@ def post_event(module):
except socket.error, e: except socket.error, e:
module.fail_json(msg="Socket error: %s to %s" % (e, uri)) module.fail_json(msg="Socket error: %s to %s" % (e, uri))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -142,7 +142,7 @@ def main(): ...@@ -142,7 +142,7 @@ def main():
module.exit_json(changed=False, name=name, state=state) module.exit_json(changed=False, name=name, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -875,6 +875,6 @@ class Nagios(object): ...@@ -875,6 +875,6 @@ class Nagios(object):
changed=True) changed=True)
###################################################################### ######################################################################
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -156,7 +156,7 @@ def main(): ...@@ -156,7 +156,7 @@ def main():
else: else:
module.fail_json(msg="result code: %d" % result.code) module.fail_json(msg="result code: %d" % result.code)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -336,6 +336,6 @@ def main(): ...@@ -336,6 +336,6 @@ def main():
module.fail_json( module.fail_json(
msg="'%s' is an unknown value for the state argument" % state) msg="'%s' is an unknown value for the state argument" % state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -175,6 +175,6 @@ def main(): ...@@ -175,6 +175,6 @@ def main():
module.exit_json(**result) module.exit_json(**result)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -125,6 +125,6 @@ def main(): ...@@ -125,6 +125,6 @@ def main():
br.run() br.run()
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -129,6 +129,6 @@ def main(): ...@@ -129,6 +129,6 @@ def main():
port.run() port.run()
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -363,6 +363,6 @@ def main(): ...@@ -363,6 +363,6 @@ def main():
module.exit_json(url=url, dest=dest, src=tmpsrc, md5sum=md5sum_src, module.exit_json(url=url, dest=dest, src=tmpsrc, md5sum=md5sum_src,
sha256sum=sha256sum, changed=changed, msg=info.get('msg', '')) sha256sum=sha256sum, changed=changed, msg=info.get('msg', ''))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -68,7 +68,7 @@ def main(): ...@@ -68,7 +68,7 @@ def main():
module.exit_json(content=data, encoding='base64') module.exit_json(content=data, encoding='base64')
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
......
...@@ -420,6 +420,6 @@ def main(): ...@@ -420,6 +420,6 @@ def main():
module.exit_json(changed=changed, **uresp) module.exit_json(changed=changed, **uresp)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -128,6 +128,6 @@ def main(): ...@@ -128,6 +128,6 @@ def main():
module.exit_json(changed=True, room=room, msg=msg, notify=notify) module.exit_json(changed=True, room=room, msg=msg, notify=notify)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -194,7 +194,7 @@ def main(): ...@@ -194,7 +194,7 @@ def main():
module.exit_json(changed=False, msg=module.params["msg"]) module.exit_json(changed=False, msg=module.params["msg"])
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -83,6 +83,6 @@ def main(): ...@@ -83,6 +83,6 @@ def main():
# Mission complete # Mission complete
module.exit_json(msg="OK") module.exit_json(msg="OK")
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -139,6 +139,6 @@ def main(): ...@@ -139,6 +139,6 @@ def main():
module.exit_json(changed=changed, room=room, msg_from=msg_from, module.exit_json(changed=changed, room=room, msg_from=msg_from,
msg=msg) msg=msg)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -154,6 +154,6 @@ def main(): ...@@ -154,6 +154,6 @@ def main():
module.exit_json(changed=False, channel=channel, nick=nick, module.exit_json(changed=False, channel=channel, nick=nick,
msg=msg) msg=msg)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -141,6 +141,6 @@ def main(): ...@@ -141,6 +141,6 @@ def main():
module.exit_json(changed=False, to=to, user=user, msg=msg.getBody()) module.exit_json(changed=False, to=to, user=user, msg=msg.getBody())
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -247,6 +247,6 @@ def main(): ...@@ -247,6 +247,6 @@ def main():
module.exit_json(changed=False) module.exit_json(changed=False)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -175,6 +175,6 @@ def main(): ...@@ -175,6 +175,6 @@ def main():
module.exit_json(changed=False, topic=topic) module.exit_json(changed=False, topic=topic)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -71,6 +71,6 @@ def main(): ...@@ -71,6 +71,6 @@ def main():
module.exit_json(msg=msg, changed=False) module.exit_json(msg=msg, changed=False)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -434,7 +434,7 @@ def main(): ...@@ -434,7 +434,7 @@ def main():
except apt.cache.LockFailedException: except apt.cache.LockFailedException:
module.fail_json(msg="Failed to lock apt for exclusive operation") module.fail_json(msg="Failed to lock apt for exclusive operation")
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -381,7 +381,7 @@ def main(): ...@@ -381,7 +381,7 @@ def main():
module.exit_json(changed=changed, repo=repo, state=state) module.exit_json(changed=changed, repo=repo, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -179,7 +179,7 @@ def main(): ...@@ -179,7 +179,7 @@ def main():
module.exit_json(changed=changed, binary=easy_install, module.exit_json(changed=changed, binary=easy_install,
name=name, virtualenv=env) name=name, virtualenv=env)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -170,7 +170,7 @@ def main(): ...@@ -170,7 +170,7 @@ def main():
elif p["state"] in ["absent", "removed"]: elif p["state"] in ["absent", "removed"]:
remove_packages(module, brew_path, pkgs) remove_packages(module, brew_path, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -209,7 +209,7 @@ def main(): ...@@ -209,7 +209,7 @@ def main():
elif p["state"] == "inactive": elif p["state"] == "inactive":
deactivate_packages(module, port_path, pkgs) deactivate_packages(module, port_path, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -223,6 +223,6 @@ def main(): ...@@ -223,6 +223,6 @@ def main():
module.exit_json(changed=changed) module.exit_json(changed=changed)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -276,6 +276,6 @@ def main(): ...@@ -276,6 +276,6 @@ def main():
module.exit_json(**result) module.exit_json(**result)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -143,7 +143,7 @@ def main(): ...@@ -143,7 +143,7 @@ def main():
elif p["state"] in ["absent", "removed"]: elif p["state"] in ["absent", "removed"]:
remove_packages(module, opkg_path, pkgs) remove_packages(module, opkg_path, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -212,7 +212,7 @@ def main(): ...@@ -212,7 +212,7 @@ def main():
elif p["state"] == "absent": elif p["state"] == "absent":
remove_packages(module, pkgs) remove_packages(module, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -346,7 +346,7 @@ def main(): ...@@ -346,7 +346,7 @@ def main():
module.exit_json(changed=changed, cmd=cmd, name=name, version=version, module.exit_json(changed=changed, cmd=cmd, name=name, version=version,
state=state, requirements=requirements, virtualenv=env, stdout=out, stderr=err) state=state, requirements=requirements, virtualenv=env, stdout=out, stderr=err)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -162,7 +162,7 @@ def main(): ...@@ -162,7 +162,7 @@ def main():
elif p["state"] == "absent": elif p["state"] == "absent":
remove_packages(module, pkgin_path, pkgs) remove_packages(module, pkgin_path, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -155,7 +155,7 @@ def main(): ...@@ -155,7 +155,7 @@ def main():
elif p["state"] == "absent": elif p["state"] == "absent":
remove_packages(module, pkgin_path, pkgs) remove_packages(module, pkgin_path, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -202,7 +202,7 @@ def main(): ...@@ -202,7 +202,7 @@ def main():
elif p["state"] == "absent": elif p["state"] == "absent":
remove_packages(module, pkgs) remove_packages(module, pkgs)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -188,7 +188,7 @@ def main(): ...@@ -188,7 +188,7 @@ def main():
module.exit_json(changed=changed, name=name, state=state, msg=msg) module.exit_json(changed=changed, name=name, state=state, msg=msg)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
......
...@@ -202,7 +202,7 @@ def main(): ...@@ -202,7 +202,7 @@ def main():
elif p['state'] in [ 'removed', 'absent' ]: elif p['state'] in [ 'removed', 'absent' ]:
remove_packages(module, packages) remove_packages(module, packages)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -737,7 +737,7 @@ def main(): ...@@ -737,7 +737,7 @@ def main():
disablerepo, disable_gpg_check) disablerepo, disable_gpg_check)
module.fail_json(msg="we should never get here unless this all failed", **res) module.fail_json(msg="we should never get here unless this all failed", **res)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -224,6 +224,6 @@ def main(): ...@@ -224,6 +224,6 @@ def main():
module.exit_json(**result) module.exit_json(**result)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -151,7 +151,7 @@ def main(): ...@@ -151,7 +151,7 @@ def main():
module.exit_json(changed=changed, repo=repo, state=state) module.exit_json(changed=changed, repo=repo, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -383,6 +383,6 @@ def main(): ...@@ -383,6 +383,6 @@ def main():
results = enforce_state(module, module.params) results = enforce_state(module, module.params)
module.exit_json(**results) module.exit_json(**results)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -49,7 +49,7 @@ def main(): ...@@ -49,7 +49,7 @@ def main():
rc, out, err = module.run_command(cmd, check_rc=True) rc, out, err = module.run_command(cmd, check_rc=True)
module.exit_json(**json.loads(out)) module.exit_json(**json.loads(out))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
......
...@@ -107,6 +107,6 @@ def main(): ...@@ -107,6 +107,6 @@ def main():
module.exit_json(changed=changed) module.exit_json(changed=changed)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -136,6 +136,6 @@ def main(): ...@@ -136,6 +136,6 @@ def main():
module.exit_json(**args) module.exit_json(**args)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -228,6 +228,6 @@ def main(): ...@@ -228,6 +228,6 @@ def main():
module.exit_json(changed=changed) module.exit_json(changed=changed)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -205,6 +205,6 @@ def main(): ...@@ -205,6 +205,6 @@ def main():
module.exit_json(changed=changed,msg=msg) module.exit_json(changed=changed,msg=msg)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -94,6 +94,6 @@ def main(): ...@@ -94,6 +94,6 @@ def main():
module.exit_json(**args) module.exit_json(**args)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -318,6 +318,6 @@ def main(): ...@@ -318,6 +318,6 @@ def main():
module.fail_json(msg='Unexpected position reached') module.fail_json(msg='Unexpected position reached')
sys.exit(0) sys.exit(0)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -48,7 +48,7 @@ def main(): ...@@ -48,7 +48,7 @@ def main():
rc, out, err = module.run_command(cmd, check_rc=True) rc, out, err = module.run_command(cmd, check_rc=True)
module.exit_json(**json.loads(out)) module.exit_json(**json.loads(out))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
......
...@@ -370,7 +370,7 @@ def main(): ...@@ -370,7 +370,7 @@ def main():
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
......
...@@ -2205,6 +2205,6 @@ def main(): ...@@ -2205,6 +2205,6 @@ def main():
data = run_setup(module) data = run_setup(module)
module.exit_json(**data) module.exit_json(**data)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -339,6 +339,6 @@ def main(): ...@@ -339,6 +339,6 @@ def main():
module.exit_json(changed=changed, **sysctl_args) module.exit_json(changed=changed, **sysctl_args)
sys.exit(0) sys.exit(0)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -450,6 +450,6 @@ def main(): ...@@ -450,6 +450,6 @@ def main():
daemonize(module, password, port, timeout, minutes, ipv6) daemonize(module, password, port, timeout, minutes, ipv6)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -275,6 +275,6 @@ def main(): ...@@ -275,6 +275,6 @@ def main():
daemonize(module, password, port, minutes) daemonize(module, password, port, minutes)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -196,6 +196,6 @@ def main(): ...@@ -196,6 +196,6 @@ def main():
elapsed = datetime.datetime.now() - start elapsed = datetime.datetime.now() - start
module.exit_json(state=state, port=port, search_regex=search_regex, path=path, elapsed=elapsed.seconds) module.exit_json(state=state, port=port, search_regex=search_regex, path=path, elapsed=elapsed.seconds)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -273,7 +273,7 @@ def main(): ...@@ -273,7 +273,7 @@ def main():
module.exit_json(changed=changed, out=out, cmd=cmd, app_path=app_path, virtualenv=virtualenv, module.exit_json(changed=changed, out=out, cmd=cmd, app_path=app_path, virtualenv=virtualenv,
settings=module.params['settings'], pythonpath=module.params['pythonpath']) settings=module.params['settings'], pythonpath=module.params['pythonpath'])
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -211,7 +211,7 @@ def main(): ...@@ -211,7 +211,7 @@ def main():
module.fail_json(msg=str(e)) module.fail_json(msg=str(e))
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
if __name__ == '__main__': if __name__ == '__main__':
......
...@@ -135,6 +135,6 @@ def main(): ...@@ -135,6 +135,6 @@ def main():
module.exit_json(changed=changed) module.exit_json(changed=changed)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
...@@ -189,7 +189,7 @@ def main(): ...@@ -189,7 +189,7 @@ def main():
module.exit_json(changed=False, name=name, state=state) module.exit_json(changed=False, name=name, state=state)
# this is magic, see lib/ansible/module_common.py # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *
main() main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment