Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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