- name: Check the VolumeGroup has 5gb space
assert:
that: ansible_lvm.vgs.VG00.free_g|int >= 5
fail_msg: 'VG has no free space'
success_msg: "{{ ansible_lvm.vgs.rhel.free_g }}"
register: vg00
- name: Line in file
shell: echo -e "{{ ansible_fqdn }},VG_FREE=0" >> /tmp/failed.txt
delegate_to: localhost
when: "'FATAL' in vg00"
我只需要使用 when 条件重定向失败的主机,但它不起作用。任何不同的条件都会有所帮助
答案1
看起来您正在尝试使用不存在的事实(我已经在 ansible 2.9.12 中检查过)。
因此,我让它发挥作用的方法是:
---
- name: answer stack overflow
hosts: all
become: yes
tasks:
- name: Get VolumeGroup "mirror" free space in GB
shell: vgs --units G|grep mirror|awk '{print $NF}'|tr -d 'G'
register: vg_free
- name: report your findings
shell: echo {{ ansible_hostname }} has {{ vg_free.stdout }} GB free on VG mirror >> /tmp/hosts_with_vg_less_than_5GB_free_report.txt
delegate_to: localhost
when: {{ vg_free.stdout | int }} < 5
不建议广泛使用 shell 模块,因为幂等性(https://en.wikipedia.org/wiki/Idempotence) 很难实现,但出于报告目的 - 为什么不呢:)。