6d84d8616b
This patchset contains customization of Dockerfile of the Tgtd container. Change-Id: I3a9ba82026fb7f596384885360339f67dc10495c Partially-implements: blueprint third-party-plugin-support
23 lines
741 B
Django/Jinja
23 lines
741 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set tgtd_packages = ['scsi-target-utils'] %}
|
|
|
|
RUN {{ macros.install_packages(tgtd_packages | customizable("packages")) }}
|
|
RUN sed -i '1 i include /var/lib/cinder/volumes/*' /etc/tgt/tgtd.conf
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
{% set tgtd_packages = ['tgt'] %}
|
|
|
|
RUN {{ macros.install_packages(tgtd_packages | customizable("packages")) }}
|
|
RUN sed -i '1 i include /var/lib/cinder/volumes/*' /etc/tgt/targets.conf
|
|
|
|
{% endif %}
|
|
|
|
{% block tgtd_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|