4ce1f1dd5e
Minimizing manpage until CLI options stabilize.
96 lines
1.6 KiB
Text
96 lines
1.6 KiB
Text
ansible(1)
|
|
=========
|
|
:doctype:manpage
|
|
:man source: Ansible
|
|
:man version: 0.0.1
|
|
:man manual: System administration commands
|
|
|
|
NAME
|
|
----
|
|
ansible - run a command somewhere else
|
|
|
|
|
|
SYNOPSIS
|
|
--------
|
|
ansible [-f forks] [-p pattern ] [-n module_name] [-a args]
|
|
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
*Ansible* is an extra-simple tool/framework/API for doing \'remote things' over
|
|
SSH.
|
|
|
|
|
|
OPTIONS
|
|
-------
|
|
|
|
|
|
*-i*, *--inventory*::
|
|
|
|
Path to the inventory hosts file, which defaults to /etc/ansible/hosts.
|
|
|
|
|
|
*-f*, *--forks*::
|
|
|
|
Level of parallelism. Specify as an integer, the default is 5.
|
|
|
|
|
|
*-n*, *--name*::
|
|
|
|
Module name to execute.
|
|
|
|
|
|
*-a*, *--args*::
|
|
|
|
Arguments to module, as a single string.
|
|
|
|
|
|
*-p*, *--pattern*::
|
|
|
|
Hostname pattern. Accepts shell-like globs which can be seperated with ";"
|
|
The default is "*" which matches all hosts in the ansible hosts file. Group
|
|
names from the ansible inventory file can also be used.
|
|
|
|
|
|
See ansible --help for additional options.
|
|
|
|
|
|
INVENTORY
|
|
---------
|
|
|
|
Ansible stores the hosts it can potentially operate on in an inventory
|
|
file. The syntax is one host per line. Groups headers are allowed and
|
|
are included on their own line, enclosed in square brackets.
|
|
|
|
FILES
|
|
-----
|
|
|
|
/etc/ansible/hosts -- Default hosts file
|
|
|
|
/usr/share/ansible -- Default module library
|
|
|
|
|
|
AUTHOR
|
|
------
|
|
|
|
Ansible was originally written by Michael DeHaan. See the AUTHORS file
|
|
for a complete list of contributors.
|
|
|
|
|
|
COPYRIGHT
|
|
---------
|
|
|
|
Copyright © 2012, Michael DeHaan
|
|
|
|
Ansible is released under the terms of the GPLv3 License.
|
|
|
|
|
|
SEE ALSO
|
|
--------
|
|
|
|
*ansible-modules*(5),
|
|
|
|
*ansible-playbook*(5),
|
|
|
|
Ansible home page: <https://github.com/mpdehaan/ansible/>
|