From a1a1f366992a7fd981878926e25fbf37f7ef1f82 Mon Sep 17 00:00:00 2001 From: Anne Douwe Bouma Date: Fri, 17 Sep 2021 17:08:09 +0200 Subject: [PATCH] Use correct command for Ansible documentation (#155) Ansible modules are documented using the `ansible-doc` command. Not using the `ansible` command, this command executes the ad-hoc commands. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31b8048..a43ad9a 100644 --- a/README.md +++ b/README.md @@ -4719,7 +4719,7 @@ additional check is implemented or explicit names are provided) while other tool How do you list all modules and how can you see details on a specific module?

1. Ansible online docs -2. `ansible-doc -l` for list of modules and `ansible [module_name]` for detailed information on a specific module +2. `ansible-doc -l` for list of modules and `ansible-doc [module_name]` for detailed information on a specific module #### Ansible - Inventory