2015-09-17 09:35:33 -07:00
|
|
|
FROM {{ namespace }}/{{ image_prefix }}cinder-base:{{ tag }}
|
2015-11-23 12:38:58 +05:30
|
|
|
MAINTAINER {{ maintainer }}
|
2015-08-12 10:38:06 +00:00
|
|
|
|
2016-08-03 13:13:52 +00:00
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
|
2016-01-12 12:39:44 +01:00
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['ubuntu'] %}
|
|
|
|
|
2016-08-03 13:13:52 +00:00
|
|
|
{% set cinder_backup_packages = [
|
|
|
|
'cinder-backup'
|
|
|
|
] %}
|
|
|
|
|
2016-08-12 08:24:11 +10:00
|
|
|
{{ macros.install_packages(cinder_backup_packages | customizable("packages")) }}
|
2016-01-12 12:39:44 +01:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2016-08-03 13:13:52 +00:00
|
|
|
{% block cinder_backup_footer %}{% endblock %}
|
|
|
|
{% block footer %}{% endblock %}
|
2015-08-28 13:17:41 +03:00
|
|
|
{{ include_footer }}
|
2015-11-30 10:30:37 +05:30
|
|
|
|
|
|
|
USER cinder
|