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.

16 lines
346B

  1. mklabel {{ item.label_type }}
  2. {% for part in item.partitions %}
  3. mkpart
  4. {% if item.label_type == "msdos" or item.label_type == "dvh" %}
  5. "{{ part.part_type }}"
  6. {% endif %}
  7. {% if part.fs_type is defined %}
  8. "{{ part.fs_type }}"
  9. {% endif %}
  10. {% if part.name is defined %}
  11. "{{ part.name }}
  12. "{% endif %}
  13. "{{ part.start }}"
  14. "{{ part.end }}"
  15. {% endfor %}