{{ name }} {{ exec_type }}

{{ priority }}

Image Variant:
{{ image_variant }}
Image Architecture:
{{ image_arch }}
Image Deployment:
{{ image_deployment }}
Type:
{{ type }}

Description

{{ description }}

{% if resources %}

Resources

    {% for resource in resources %}
  • {{ resource|e }}
  • {% endfor %}
{% endif %} {% if pre_conditions or pkgname or packages_list or libname or git_repo_url %}

Pre Conditions

    {% if pkgname %}{{ macros.ostree_preconditions(pkgname) }}{% endif %} {% if packages_list %}{{ macros.install_packages(packages_list) }}{% endif %} {% if libname %}{{ macros.modules_preconditions(libname) }}{% endif %} {% if git_repo_url and not pkgname %}{{ macros.git_repo(git_repo_url, git_repo_dir, git_repo_branch) }}{% endif %} {% for comment, command, output, _, link in pre_conditions %} {% if comment %}
  1. {{ comment|e }}
  2. {% endif %} {% if command %}

    {{ command|e }}

    {% endif %} {% if link %}

    {{ link }}

    {% endif %} {% if output %}{% for l in output %}

    {{ l|e }}

    {% endfor %}{% endif %} {% endfor %}
{% endif %}

Execution Steps

    {% for comment, command, output, _, link in run_steps %} {% if comment %}
  1. {{ comment|e }}
  2. {% endif %} {% if command %}

    {{ command|e }}

    {% endif %} {% if output %}{% for l in output %}

    {{ l|e }}

    {% endfor %}{% endif %} {% endfor %}

Expected

{% for comment, command, output, image, link in expected %} {% if comment %}

{{ comment|e }}

{% endif %} {% if command %}

{{ command|e }}

{% endif %} {% if output %}{% for l in output %}

{{ l|e }}

{% endfor %}{% endif %} {% if image %}{% endif %} {% if link %}

{{ link }}

{% endif %} {% endfor %} {% if post_conditions %}

Post Conditions

    {% for comment, command, output, _, link in post_conditions %} {% if comment %}
  1. {{ comment|e }}
  2. {% endif %} {% if command %}

    {{ command|e }}

    {% endif %} {% if output %}{% for l in output %}

    {{ l|e }}

    {% endfor %}{% endif %} {% endfor %}
{% endif %}
{% if notes %}

Notes

    {% for comment, command, output, _, link in notes %} {% if comment %}
  • {{ comment|e }}
  • {% endif %} {% if command %}

    {{ command|e }}

    {% endif %} {% if output %}{% for l in output %}

    {{ l|e }}

    {% endfor %}{% endif %} {% if link %}

    {{ link }}

    {% endif %} {% endfor %}
{% endif %}