Ansible模块——debug

混江龙づ霸主 提交于 2020-02-02 17:57:47

一、参数

msg:输出定义好的meassage 如果没有message 默认输出Hello world!
var:输出变量的内容 不可与msg选项共用

二、示例

- debug: msg="System {{ inventory_hostname }} has uuid {{ ansible_product_uuid }}"
- debug: msg="System {{ inventory_hostname }} has gateway {{ ansible_default_ipv4.gateway }}"
  when: ansible_default_ipv4.gateway is defined
- shell: /usr/bin/uptime
  register: result
- debug: var=result
- name: Display all variables/facts known for a host
  debug: var=hostvars[inventory_hostname]
 

————Blueicex 2020/2/2 15:40 blueice1980@126.com

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!