FROM {{ namespace }}/{{ image_prefix }}neutron-base:{{ tag }} MAINTAINER {{ maintainer }} {% block neutron_metering_agent_header %}{% endblock %} {% import "macros.j2" as macros with context %} {% if install_type == 'binary' %} {% if base_distro in ['centos', 'oraclelinux', 'rhel'] %} {% set neutron_metering_agent_packages = ['openstack-neutron-metering-agent'] %} {% elif base_distro in ['ubuntu', 'debian'] %} {% set neutron_metering_agent_packages = ['neutron-metering-agent'] %} {% endif %} {{ macros.install_packages(neutron_metering_agent_packages | customizable("packages")) }} {% endif %} {% block neutron_metering_agent_footer %}{% endblock %} {% block footer %}{% endblock %} {{ include_footer }} USER neutron