ansible输出打印不需要的东西。如何格式化和仅显示特定数据

时间:2017-11-23 05:19:46

标签: ansible ansible-2.x ansible-inventory ansible-facts ansible-template

我正在使用ansible 2.4 in centos,尝试在远程服务器中运行以下脚本并获取输出。这里的问题是yum info输出也以json格式显示。但我需要只显示输出。如何删除json格式。

---

- hosts: GeneralServer

  tasks:
  - name: Checking the service status
    shell: systemctl status {{ item }}
    with_items:
        - httpd
        - crond
        - postfix
        - sshd
    register: service
  - debug: var=service
  - name: Checking the package info
    shell : yum info {{ item }}
    with_items:
        - httpd
        - postfix
    register: info
  - debug: var=info
  - name: Executing the mysql running scripts in mysql
    shell: mysql -u username --password mysql -Ns -e 'show databases;'
    register: databases
  - debug: var=databases 

我也是回调模块的新手。请帮我解决这个问题。

是否可以仅显示stdout_lines值。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用不同的回调插件来改变输出,例如:

- debug:
    msg: "{{ info.results | json_query('[].stdout_lines[]') }}"

但通常你不会避免使用JSON,因为它是Ansible如何解释数据的。

要减少信息量,您可以使用不同的技术。例如json_query过滤器。

这样的事情:

{{1}}