您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

parted_partitions_args.j2 453B

7 年前
7 年前
7 年前
7 年前
1234567891011121314151617181920212223
  1. {% set disk = item.0 %}
  2. {% set part = item.1 %}
  3. mkpart
  4. {% if disk.label_type == "msdos" %}
  5. "{{ part.part_type }}"
  6. {% endif %}
  7. {% if disk.label_type == "gpt" %}
  8. "{{ part.name }}"
  9. {% endif %}
  10. {% if part.fs_type is defined %}
  11. "{{ part.fs_type }}"
  12. {% endif %}
  13. "{{ part.start }}"
  14. "{{ part.end }}"
  15. {#
  16. {% if part.flags is defined %}
  17. {% set outer_loop = loop %}
  18. {% for flag in part.flags %}
  19. set {{ outer_loop.index }} {{ flag }} on
  20. {% endfor %}
  21. {% endif %}
  22. #}