861f55fbfd
Change-Id: I9692dda817ef134d647247431565e1b58cf9da41
41 lines
1.1 KiB
Django/Jinja
41 lines
1.1 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block cinder_backup_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set cinder_backup_packages = [
|
|
'nfs-utils'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set cinder_backup_packages = [
|
|
'cinder-backup',
|
|
'nfs-common'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set cinder_backup_packages = [
|
|
'nfs-utils'
|
|
] %}
|
|
{% elif base_package_type == 'deb' %}
|
|
{% set cinder_backup_packages = [
|
|
'nfs-common'
|
|
] %}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(cinder_backup_packages | customizable("packages")) }}
|
|
|
|
{% block cinder_backup_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER cinder
|