You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

filesystems.json.j2 217B

7 years ago
12345678
  1. [
  2. {% for fs in filesystems %}
  3. {% if not fs.uuid is defined and fs.fstype != 'vfat' %}
  4. {% set fs = fs | combine({ 'uuid': _filesystems_uuids.results[loop.index0].stdout }) %}
  5. {% endif %}
  6. {{fs|to_json}},
  7. {% endfor %}
  8. ]