![Jeffrey Zhang](/assets/img/avatar_default.png)
include_header and include_footer parameter is already removed, remove them in all Dockerfiles. Add missing footer block. Change-Id: I90da03eb9f95a3827361d5f5ede65fde7d6be2b3
18 lines
571 B
Django/Jinja
18 lines
571 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block multipathd_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set multipathd_packages = ['device-mapper-multipath'] %}
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set multipathd_packages = ['multipath-tools'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(multipathd_packages | customizable("packages")) }}
|
|
|
|
{% block multipathd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|