additional course material RH294
Olaf Bohlen
2020-08-20 1de6236f80a879ca110981fe0e5c0c05c521225b
1
2
3
4
5
6
7
8
---
- name: scan facts
  hosts: localhost
  become: false
  tasks:
    - debug:
        msg: 'FS {{ item["device"] }} mounted on {{ item["mount"] }} has size of {{ item["size_total"] }}'
      loop: '{{ ansible_facts["mounts"] }}'