我正在编写一个将在多个遥控盒上运行脚本的剧本。运行这些远程控制器的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)如何将最终的合并数组放到另一个游戏中以便我可以使用它?
答案 0 :(得分: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=[])
将列表展平为长行列表。