選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
271B

  1. [
  2. {% for fs in filesystems %}
  3. {{fs|to_json}},
  4. {% endfor %}
  5. {% for vol in partitioning_profile_volumes %}
  6. {% set fs = vol.fs %}
  7. {% set fs = fs | combine({
  8. 'label': vol.name,
  9. 'device': "/dev/"+primary_volume_group_name+"/"+vol.name
  10. }) %}
  11. {{fs|to_json}},
  12. {% endfor %}
  13. ]