fixed ansible lint error: set -o pipefail added.

This commit is contained in:
Staf Wagemakers
2020-07-22 20:48:40 +02:00
parent 4058ee42e6
commit e2c4882dba

View File

@@ -1,7 +1,9 @@
--- ---
- name: Get the list of mounted filesystems - name: Get the list of mounted filesystems
shell: cat /proc/mounts | awk '{ print $2}' | grep -E "^{{ mounted_fs }}" shell: set -o pipefail && cat /proc/mounts | awk '{ print $2}' | grep -E "^{{ mounted_fs }}"
register: get_mounted_filesystems register: get_mounted_filesystems
args:
executable: /bin/bash
failed_when: False failed_when: False
changed_when: get_mounted_filesystems.stdout | length > 0 changed_when: get_mounted_filesystems.stdout | length > 0