Merge "Prevent apache from listening on port 80"

This commit is contained in:
Jenkins 2017-03-27 07:54:09 +00:00 committed by Gerrit Code Review
commit 464ca08bfe
3 changed files with 21 additions and 7 deletions

View File

@ -12,14 +12,17 @@ MAINTAINER {{ maintainer }}
'httpd',
'mod_wsgi'
] %}
{{ macros.install_packages(cinder_api_packages | customizable("packages")) }}
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf
{% elif base_distro in ['ubuntu'] %}
{% set cinder_api_packages = [
'cinder-api',
'apache2',
'libapache2-mod-wsgi'
] %}
{% endif %}
{{ macros.install_packages(cinder_api_packages | customizable("packages")) }}
RUN echo > /etc/apache2/ports.conf
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
@ -27,13 +30,16 @@ MAINTAINER {{ maintainer }}
'httpd',
'mod_wsgi'
] %}
{{ macros.install_packages(cinder_api_packages | customizable("packages")) }}
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf
{% elif base_distro in ['ubuntu'] %}
{% set cinder_api_packages = [
'apache2',
'libapache2-mod-wsgi'
] %}
{% endif %}
{{ macros.install_packages(cinder_api_packages | customizable("packages")) }}
RUN echo > /etc/apache2/ports.conf
{% endif %}
{% endif %}

View File

@ -13,6 +13,8 @@ MAINTAINER {{ maintainer }}
'ipxe-bootimgs',
'mod_wsgi'
] %}
{{ macros.install_packages(ironic_pxe_packages | customizable("packages")) }}
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf
{% elif base_distro in ['ubuntu', 'debian'] %}
{% set ironic_pxe_packages = [
'tftpd-hpa',
@ -23,9 +25,9 @@ MAINTAINER {{ maintainer }}
'ipxe',
'libapache2-mod-wsgi'
] %}
{% endif %}
{{ macros.install_packages(ironic_pxe_packages | customizable("packages")) }}
RUN echo > /etc/apache2/ports.conf
{% endif %}
COPY tftp-map-file /map-file
COPY extend_start.sh /usr/local/bin/kolla_ironic_extend_start

View File

@ -13,6 +13,8 @@ MAINTAINER {{ maintainer }}
'httpd',
'mod_wsgi'
] %}
{{ macros.install_packages(nova_api_packages | customizable("packages")) }}
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf
{% elif base_distro in ['ubuntu'] %}
@ -23,8 +25,9 @@ MAINTAINER {{ maintainer }}
'libapache2-mod-wsgi'
] %}
{% endif %}
{{ macros.install_packages(nova_api_packages | customizable("packages")) }}
RUN echo > /etc/apache2/ports.conf
{% endif %}
{% elif install_type == 'source' %}
@ -34,6 +37,8 @@ MAINTAINER {{ maintainer }}
'httpd',
'mod_wsgi'
] %}
{{ macros.install_packages(nova_api_packages | customizable("packages")) }}
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf
{% elif base_distro in ['ubuntu'] %}
@ -42,9 +47,10 @@ MAINTAINER {{ maintainer }}
'libapache2-mod-wsgi'
] %}
{% endif %}
{{ macros.install_packages(nova_api_packages | customizable("packages")) }}
RUN echo > /etc/apache2/ports.conf
{% endif %}
{% endif %}