Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

hard_disks_boot_profile.json.j2 624B

2 år sedan
12345678910111213141516171819202122
  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. ]