
Builds ephemeral ISO and target host images. Also replaces isogen (iso-builder) with a single ansible-driven build tool for both types of airship images used: ephemeral ISO as well as target QCOW2 images deployed to base nodes. Change-Id: I6d0368de771869e4e645a03d8a20f470b34602ab
10 lines
210 B
Django/Jinja
10 lines
210 B
Django/Jinja
{% if "args" in item %}
|
|
{% set content = item.name %}
|
|
{% for arg in item.args %}
|
|
{% set content = content + ' ' + arg.name + '=' + arg.value %}
|
|
{% endfor %}
|
|
{{ content }}
|
|
{% else %}
|
|
{{ item.name }}
|
|
{% endif %}
|