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

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 %}