mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove mercurial module reference now that we have a cleaned up hg module in core now!
This commit is contained in:
parent
5457e969db
commit
550a1b5f02
1 changed files with 4 additions and 7 deletions
|
@ -9,20 +9,17 @@ Ansible Modules
|
||||||
```````````````
|
```````````````
|
||||||
|
|
||||||
Ansible modules are a way of adding new client-side logic to ansible.
|
Ansible modules are a way of adding new client-side logic to ansible.
|
||||||
They can be written in any language.
|
They can be written in any language. Generally our goal is to include most modules in core,
|
||||||
|
though a few may remain outside of core depending on use cases and implementations.
|
||||||
|
|
||||||
- `Official "core" ansible modules <http://ansible.cc/docs/modules.html>`_ - various
|
- `Official "core" ansible modules <http://ansible.cc/docs/modules.html>`_ - various
|
||||||
- `mercurial <https://github.com/bradobro/ansible-module-mercurial>`_ - bradobro
|
|
||||||
- `zypper (bash module example) <https://github.com/jpmens/ansible-zypp>`_ - jp\_mens
|
- `zypper (bash module example) <https://github.com/jpmens/ansible-zypp>`_ - jp\_mens
|
||||||
- `homebrew <https://gist.github.com/3170079>`_ - swehack
|
- `homebrew <https://gist.github.com/3170079>`_ - swehack
|
||||||
- `additional provisioning-related modules <https://github.com/ansible-provisioning>`_ - jhoekx and dagwieers
|
- `additional provisioning-related modules <https://github.com/ansible-provisioning>`_ - jhoekx and dagwieers
|
||||||
- `dynamic dns updates <https://github.com/jpmens/ansible-m-dnsupdate>`_ - jp\_mens
|
- `dynamic dns updates <https://github.com/jpmens/ansible-m-dnsupdate>`_ - jp\_mens
|
||||||
- `RabbitMQ <https://github.com/elventear/ansible-rabbitmq>`_ - elventear
|
|
||||||
|
|
||||||
Python modules using 0.6 and later can and should use the common "AnsibleModule"
|
All python modules should use the common "AnsibleModule" class to dramatically reduce the amount of boilerplate code required.
|
||||||
class to dramatically reduce the amount of boilerplate code required.
|
Not all modules above may take advantage of this feature. See the official documentation for more details.
|
||||||
Not all modules above yet take advantage of this feature. See the
|
|
||||||
official documentation for more details.
|
|
||||||
|
|
||||||
Selected Playbooks
|
Selected Playbooks
|
||||||
``````````````````
|
``````````````````
|
||||||
|
|
Loading…
Reference in a new issue