我正在编写一个剧本,它将在许多远程盒子上运行一个脚本。运行这些遥控器的 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)如何将最终合并的数组放入另一个游戏中以便我可以使用它?