fix risky-shell-pipe

This commit is contained in:
2024-10-28 18:47:31 +01:00
parent adde811f47
commit a3b772c543
4 changed files with 4 additions and 4 deletions

View File

@@ -52,7 +52,7 @@
state: absent
- name: Get list of CD-ROM devices
ansible.builtin.shell: virsh --connect qemu:///system domblklist {{ hostname }} --details | grep 'cdrom' | awk '{print $3}'
ansible.builtin.shell: set -o pipefail && virsh --connect qemu:///system domblklist {{ hostname }} --details | grep 'cdrom' | awk '{print $3}'
changed_when: false
register: cdrom_devices