2012-03-08 19:36:47 +01:00
|
|
|
Ansible Modules
|
|
|
|
===============
|
|
|
|
|
2012-08-28 21:41:10 +02:00
|
|
|
.. contents::
|
2013-05-02 17:35:24 +02:00
|
|
|
:depth: 3
|
2012-08-28 21:41:10 +02:00
|
|
|
|
2013-10-05 00:34:39 +02:00
|
|
|
.. _modules_intro:
|
|
|
|
|
2012-08-28 21:41:10 +02:00
|
|
|
Introduction
|
|
|
|
````````````
|
|
|
|
|
|
|
|
|
2012-08-03 17:31:43 +02:00
|
|
|
Ansible ships with a number of modules (called the 'module library')
|
2012-03-31 16:38:24 +02:00
|
|
|
that can be executed directly on remote hosts or through :doc:`playbooks`.
|
|
|
|
Users can also write their own modules. These modules can control system
|
2012-08-03 17:31:43 +02:00
|
|
|
resources, like services, packages, or files (anything really), or
|
|
|
|
handle executing system commands.
|
2012-03-08 19:53:48 +01:00
|
|
|
|
2012-03-31 16:38:24 +02:00
|
|
|
Let's review how we execute three different modules from the command line::
|
|
|
|
|
|
|
|
ansible webservers -m service -a "name=httpd state=running"
|
|
|
|
ansible webservers -m ping
|
|
|
|
ansible webservers -m command -a "/sbin/reboot -t now"
|
|
|
|
|
2012-08-03 17:31:43 +02:00
|
|
|
Each module supports taking arguments. Nearly all modules take ``key=value``
|
|
|
|
arguments, space delimited. Some modules take no arguments, and the
|
2012-07-28 02:35:45 +02:00
|
|
|
command/shell modules simply take the string of the command you want to run.
|
2012-03-09 04:50:00 +01:00
|
|
|
|
2012-03-31 16:38:24 +02:00
|
|
|
From playbooks, Ansible modules are executed in a very similar way::
|
|
|
|
|
|
|
|
- name: reboot the servers
|
2012-08-03 17:31:43 +02:00
|
|
|
action: command /sbin/reboot -t now
|
2012-03-31 16:38:24 +02:00
|
|
|
|
2012-10-23 15:14:01 +02:00
|
|
|
Version 0.8 and higher support the following shorter syntax::
|
|
|
|
|
|
|
|
- name: reboot the servers
|
|
|
|
command: /sbin/reboot -t now
|
|
|
|
|
2012-03-31 16:38:24 +02:00
|
|
|
All modules technically return JSON format data, though if you are using the
|
2012-03-09 20:39:29 +01:00
|
|
|
command line or playbooks, you don't really need to know much about
|
2012-03-31 16:38:24 +02:00
|
|
|
that. If you're writing your own module, you care, and this means you do
|
2012-05-02 07:35:02 +02:00
|
|
|
not have to write modules in any particular language -- you get to choose.
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-08-01 05:19:41 +02:00
|
|
|
Modules are `idempotent`, meaning they will seek to avoid changes to the system unless a change needs to be made. When using Ansible
|
|
|
|
playbooks, these modules can trigger 'change events' in the form of notifying 'handlers'
|
|
|
|
to run additional tasks.
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2013-03-19 03:31:42 +01:00
|
|
|
Documention for each module can be accessed from the command line with the
|
|
|
|
ansible-doc as well as the man command::
|
|
|
|
|
|
|
|
ansible-doc command
|
|
|
|
|
|
|
|
man ansible.template
|
|
|
|
|
2012-03-31 16:38:24 +02:00
|
|
|
Let's see what's available in the Ansible module library, out of the box:
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2012-03-09 20:39:29 +01:00
|
|
|
|
2012-09-30 17:03:23 +02:00
|
|
|
.. include:: modules/_list.rst
|
2012-03-27 01:48:32 +02:00
|
|
|
|
2013-10-05 20:17:07 +02:00
|
|
|
.. _ansible_doc:
|
|
|
|
|
|
|
|
Reading Module Documentation Locally
|
|
|
|
````````````````````````````````````
|
|
|
|
|
|
|
|
ansible-doc is a friendly command line tool that allows you to access module documentation locally.
|
|
|
|
It comes with Ansible.
|
|
|
|
|
|
|
|
To list documentation for a particular module::
|
|
|
|
|
|
|
|
ansible-doc yum | less
|
|
|
|
|
|
|
|
To list all modules available::
|
|
|
|
|
|
|
|
ansible-doc --list | less
|
|
|
|
|
|
|
|
To access modules outside of the stock module path (such as custom modules that live in your playbook directory),
|
|
|
|
use the '--module-path' option to specify the directory where the module lives.
|
|
|
|
|
2013-10-05 00:34:39 +02:00
|
|
|
.. _writing_modules:
|
2012-03-22 06:01:02 +01:00
|
|
|
|
2012-03-09 04:50:00 +01:00
|
|
|
Writing your own modules
|
2013-05-02 17:31:16 +02:00
|
|
|
````````````````````````
|
2012-03-08 19:36:47 +01:00
|
|
|
|
2013-09-30 01:30:10 +02:00
|
|
|
See :doc:`developing_modules`.
|
2012-03-31 15:29:31 +02:00
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
2013-09-30 01:16:59 +02:00
|
|
|
:doc:`intro_adhoc`
|
2012-04-13 00:20:52 +02:00
|
|
|
Examples of using modules in /usr/bin/ansible
|
2012-03-31 15:29:31 +02:00
|
|
|
:doc:`playbooks`
|
2012-04-13 00:20:52 +02:00
|
|
|
Examples of using modules with /usr/bin/ansible-playbook
|
2013-09-30 01:16:59 +02:00
|
|
|
:doc:`developing_modules`
|
2012-03-31 16:21:28 +02:00
|
|
|
How to write your own modules
|
2013-09-30 01:30:10 +02:00
|
|
|
:doc:`developing_api`
|
2012-03-31 15:29:31 +02:00
|
|
|
Examples of using modules with the Python API
|
2012-04-13 00:20:52 +02:00
|
|
|
`Mailing List <http://groups.google.com/group/ansible-project>`_
|
2012-03-31 15:55:37 +02:00
|
|
|
Questions? Help? Ideas? Stop by the list on Google Groups
|
|
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
|
|
#ansible IRC chat channel
|
|
|
|
|