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.

14 lines
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. ]