自动化运维工具ansible详解——ansible-doc 命令
发布日期: 2022-02-11 16:33:52 来源: 博客园

ansible-doc 命令常用于获取模块信息及其使用帮助,一般用法如下:

ansible-doc -l #获取全部模块的信息

ansible-doc -s MOD_NAME #获取指定模块的使用帮助

我们也可以查看一下ansible-doc的全部用法:

[root@server ~]# ansible-doc

Usage: ansible-doc [options] [module...]

Options:

-h, --help show this help message and exit  # 显示命令参数API文档

-l, --list List available modules  #列出可用的模块

-M MODULE_PATH, --module-path=MODULE_PATH  #指定模块的路径

specify path(s) to module library (default=None)

-s, --snippet Show playbook snippet for specified module(s)  #显示playbook制定模块的用法

-v, --verbose verbose mode (-vvv for more, -vvvv to enable  # 显示ansible-doc的版本号查看模块列表:

connection debugging)

--version show program's version number and exit

关键词: 自动化运维工具ansible ansible详解 自动化运维工具 ansible-doc 命令

推荐内容