我正在尝试使用Ansible剧本中的寄存器存储我的输出。下面是我正在使用的代码。
我尝试了以下代码
- name: Check if Service Exists
stat: path=/etc/init.d/{{ item }}
register: {{ item }}_service_status
with_items:
- XXX
- YYY
- ZZZ
我需要根据代码中提到的项目将不同的输出存储在不同的寄存器变量中。它失败,无法继续。任何帮助将不胜感激。
答案 0 :(得分:0)
更新后的答案
我认为您需要在其周围加上引号:
register: "{{ item }}_service_status"
output
中,然后通过循环遍历静态变量中的每个项目,使用循环来迭代构建新变量service_status
(a list) output
- name: Check if Service Exists
stat: path=/etc/init.d/{{ item }}
register: output
with_items:
- XXX
- YYY
- ZZZ
- name: Setting fact using output of loop
set_fact:
service_status:
- rc: "{{ item.rc }}"
stdout: "{{ item.stdout }}"
id: "{{ item.id }}"
with_items:
- "{{ output }}"
- debug:
msg: "ID and stdout: {{ item.id }} - {{ item.stdout }}"
with_items:
- "{{ service_status }}"
初始答案
IIUC,Ansible文档中的this link显示了如何在循环内使用register
(请参见this SO post中的另一个示例)。
几点
XXX, YYY, ZZZ
)分配给一个单独的变量(例如1,2)可能更方便with_items
is no longer the recommended approach遍历变量:而是使用loop
-有关示例,请参见here vars:
items:
- XXX
- YYY
- ZZZ
- name: Check if Service Exists
stat: path=/etc/init.d/{{ item }}
register: service_status
loop: "{{ items|flatten(levels=1) }}"
- name: Show the return code and stdout
debug:
msg: "Cmd {{ item.cmd }}, return code {{ item.rc }}, stdout {{ item.stdout }}"
when: item.rc != 0
with_items: "{{ service_status.results }}"