summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2017-03-22 16:11:25 -0400
committerBrian Coca <bcoca@users.noreply.github.com>2017-03-23 01:27:19 -0400
commit6b8347ec60ef7cb56d578d61361bf2451841001c (patch)
tree29b59846ed508d023f784d73b8c10d1aa594d458
parentd14634ca21fd04acf9fec8d581dc9111e74bc95c (diff)
downloadansible-6b8347ec60ef7cb56d578d61361bf2451841001c.tar.gz
updated doc man page
-rw-r--r--docs/man/man1/ansible-doc.1.asciidoc.in35
1 files changed, 20 insertions, 15 deletions
diff --git a/docs/man/man1/ansible-doc.1.asciidoc.in b/docs/man/man1/ansible-doc.1.asciidoc.in
index 2b1f2678d9..089aa928e3 100644
--- a/docs/man/man1/ansible-doc.1.asciidoc.in
+++ b/docs/man/man1/ansible-doc.1.asciidoc.in
@@ -7,19 +7,19 @@ ansible-doc(1)
NAME
----
-ansible-doc - show documentation on Ansible modules
+ansible-doc - show documentation on Ansible plugins
SYNOPSIS
--------
-ansible-doc [-M module_path] [-l] [-s] [module...]
+ansible-doc [-M plugin_path] [-l] [-s] [-t <type>] [plugin...]
DESCRIPTION
-----------
*ansible-doc* displays information on modules installed in Ansible
-libraries. It displays a terse listing of modules and their short
+libraries. It displays a terse listing of plugins and their short
descriptions, provides a printout of their DOCUMENTATION strings,
and it can create a short "snippet" which can be pasted into a
playbook.
@@ -28,33 +28,39 @@ playbook.
OPTIONS
-------
-*-M* 'DIRECTORY', *--module-path=*'DIRECTORY'::
+*-M* 'DIRECTORY', *--plugin-path=*'DIRECTORY'::
-the 'DIRECTORY' search path to load modules from. The default is
-'/usr/share/ansible'. This can also be set with the ANSIBLE_LIBRARY
-environment variable.
+The 'DIRECTORY' search path to load plugins from.
+If not specified Ansbile uses it's normal search path and configuration.
*-s*, *--snippet=*::
-Produce a snippet which can be copied into a playbook for modification, like
-a kind of task template.
+Produce a snippet which can be copied into a playbook for modification, like a kind of task template.
*-l*, *--list=*::
-Produce a terse listing of modules and a short description of each.
+Produce a terse listing of plugins and a short description of each.
+*-t*, *--type=*::
+
+Specify the type of plugin to target, default is 'module'.
+Other choices are 'cache', 'callback', 'connection', 'lookup' and 'strategy'.
ENVIRONMENT
-----------
-ANSIBLE_LIBRARY -- Override the default ansible module library path
+ANSIBLE_CONFIG -- Configuration file to use
+ANSIBLE_LIBRARY -- Override the default ansible module library path
+ANSIBLE_CACHE_PLUGINS -- Override the default ansible cache plugin path
+ANSIBLE_CALLBACK_PLUGINS -- Override the default ansible callback plugin path
+ANSIBLE_CONNECTION_PLUGINS -- Override the default ansible connection plugin path
+ANSIBLE_LOOKUP_PLUGINS -- Override the default ansible lookup plugin path
+ANSIBLE_STRATEGY_PLUGINS -- Override the default ansible strategy plugin path
FILES
-----
-/usr/share/ansible/ -- Default module library
-
/etc/ansible/ansible.cfg -- Config file, used if present
~/.ansible.cfg -- User config file, overrides the default config if present
@@ -64,8 +70,7 @@ FILES
AUTHOR
------
-ansible-doc was originally written by Jan-Piet Mens. See the AUTHORS file
-for a complete list of contributors.
+ansible-doc was originally written by Jan-Piet Mens. See the AUTHORS file for a complete list of contributors.
COPYRIGHT