File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
12
12
{% if install_type == 'binary' %}
13
13
{% if base_package_type == 'rpm' %}
14
14
{% set ironic_inspector_packages = [
15
+ 'iptables' ,
15
16
'openstack-ironic-inspector' ,
16
17
'openstack-ironic-inspector-dnsmasq'
17
18
] %}
@@ -25,7 +26,9 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
25
26
{{ macros.install_packages(ironic_inspector_packages | customizable("packages")) }}
26
27
27
28
{% elif install_type == 'source' %}
28
- {% if base_package_type == 'deb' %}
29
+ {% if base_package_type == 'rpm' %}
30
+ {% set ironic_inspector_packages = ['iptables' ] %}
31
+ {% elif base_package_type == 'deb' %}
29
32
{% set ironic_inspector_packages = ['iptables' ] %}
30
33
{% endif %}
31
34
You can’t perform that action at this time.
0 commit comments