25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

filesystems.json.j2 217B

7 년 전
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. ]