You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Ansible <http://ansible.com/>`_ is a open source system automation tool. The biggest advantage over Puppet or Chef is it does not require an agent on the client machine. Playbooks are Ansible’s configuration, deployment, and orchestration language and are written in in yaml with jinja2 for templating.
185
+
186
+
`Ansible <http://ansible.com/>`_ is an open source system automation tool.
187
+
The biggest advantage over Puppet or Chef is it does not require an agent on
188
+
the client machine. Playbooks are Ansible’s configuration, deployment, and
189
+
orchestration language and are written in in YAML with Jinja2 for templating.
182
190
183
191
Ansible supports Python versions 2.6 and 2.7 and can be installed via pip:
184
192
185
193
.. code-block:: console
186
194
187
195
$ pip install ansible
188
196
189
-
Ansible requires a inventory file that describes the hosts it has access to. Here is an example of a host and
190
-
playbook that will ping all the hosts in the inventory file:
197
+
Ansible requires an inventory file that describes the hosts to which it has
198
+
access. Below is an example of a host and playbook that will ping all the
That Ansible playbook will ping all of the servers in the hosts.yml file. You can also select groups of servers using Ansible. For more information about Ansible read the docs.
219
-
220
-
`Ansible Docs <http://docs.ansible.com/>`_
227
+
The Ansible playbook will ping all of the servers in the :file:`hosts.yml` file.
228
+
You can also select groups of servers using Ansible. For more information
229
+
about Ansible, read the `Ansible Docs <http://docs.ansible.com/>`_.
0 commit comments