You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

parted_flags_args.j2 195B

7 年之前
12345678
  1. {% for part in item.partitions %}
  2. {% if part.flags is defined %}
  3. {% set partnum = loop.index %}
  4. {% for flag in part.flags %}
  5. set {{ partnum }} {{ flag }} on
  6. {% endfor %}
  7. {% endif %}
  8. {% endfor %}