No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

23 líneas
624B

  1. [
  2. {% for hd in hard_disks %}
  3. {% set first_device = (hard_disks | first) == hd %}
  4. {
  5. "device": "{{hd.device}}",
  6. "name": "{{hd.name}}",
  7. "label_type": "{{ _partitioning_boot_profile.label_type }}",
  8. "partitions": [
  9. {% if first_device and _partitioning_boot_profile.partitions_first_device is defined %}
  10. {% for part in _partitioning_boot_profile.partitions_first_device %}
  11. {{part}},
  12. {% endfor %}
  13. {% endif %}
  14. {% if _partitioning_boot_profile.partitions is defined %}
  15. {% for part in _partitioning_boot_profile.partitions %}
  16. {{part}},
  17. {% endfor %}
  18. {% endif %} #}
  19. ]
  20. },
  21. {% endfor %}
  22. ]