2

我正在编写一个剧本,它将在许多远程盒子上运行一个脚本。运行这些遥控器的 stdout_lines 需要整理成一个单独的数组,该数组可以传递给在本地运行的书中的另一个剧本,然后将这个大的整理数组传递给一个模块。

我似乎找不到办法做到这一点。一些代码类型的东西(不起作用)如下:

---

- name: Gather information from hosts
  hosts: remote-hosts
  become: yes
  become_method: sudo

  vars:
    information: |
      {%- set o=[] %}
      {%- for i in play_hosts %}
        {%- for line in hostvars[i].info_script_output_lines %}
          {%- if o.append(hostvars[i].info_script_output_lines[line]) %}
          {%- endif %}
        {%- endfor %}
      {%- endfor %}
      {{ o }}

  tasks:
    - name: Run info retrieval script
      script: /script_folder/script_that_outputs_lines.sh
      register: info_script_output

    - set_fact:
        info_script_output_lines: "{{ info_script_output.stdout_lines }}"

    - set_fact:
        final_info: "{{ info_script_output_lines }}"
        run_once: true
        delegate_to: 127.0.0.1
        delegate_facts: true

- name: Output result
  hosts: localhost

  tasks:
    - debug:
        msg: Output = {{ hostvars['localhost']['final_info'] }}

hostvars['localhost']['final_info']在第二部剧中不存在。

谁能解释我是否(a)使用每个遥控器的输出事实正确构建我的数组,以及(b)如何将最终合并的数组放入另一个游戏中以便我可以使用它?

4

1 回答 1

3

干得好:

---
- hosts: mygroup
  gather_facts: no
  tasks:
    - shell: echo begin; echo {{ inventory_hostname }}; echo end;
      register: cmd_output
    - set_fact:
        my_lines: "{{ cmd_output.stdout_lines }}"

- hosts: localhost
  gather_facts: no
  vars:
    combined_lines: "{{ groups['mygroup'] | map('extract',hostvars,'my_lines') | sum(start=[]) }}"
  tasks:
    - debug:
        msg: "{{ combined_lines }}"

使用extract过滤器,然后sum(start=[])将列表展平为一长串行。

于 2017-03-30T15:00:48.157 回答