- 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/冪等性)很難實現,但出於報告目的 - 為什麼不呢:)。