Skip to content
Snippets Groups Projects
Commit 17333aed authored by Sam Yaple's avatar Sam Yaple
Browse files

Fix keystone for Ubuntu

Due to the differences between Ubuntu and Centos around Apache2 I have
had to copy both start.sh and config-external.sh to be unique files
for Ubuntu so as not to affect Centos either. This can be removed when
we change the way config-external works.

Change-Id: I14dc11e7bb6284b897259a53acc914ae8f254d3c
Partially-Implements: blueprint install-from-ubuntu
parent 5dcf175c
No related branches found
No related tags found
No related merge requests found
{% set apache_dir = 'apache2' if kolla_base_distro in ['ubuntu', 'debian'] else 'httpd' %}
Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}:{{ keystone_public_port }} Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}:{{ keystone_public_port }}
Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}:{{ keystone_admin_port }} Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}:{{ keystone_admin_port }}
...@@ -10,8 +11,8 @@ Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['addr ...@@ -10,8 +11,8 @@ Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['addr
<IfVersion >= 2.4> <IfVersion >= 2.4>
ErrorLogFormat "%{cu}t %M" ErrorLogFormat "%{cu}t %M"
</IfVersion> </IfVersion>
ErrorLog /var/log/httpd/keystone.log ErrorLog /var/log/{{ apache_dir }}/keystone.log
CustomLog /var/log/httpd/keystone_access.log combined CustomLog /var/log/{{ apache_dir }}/keystone_access.log combined
</VirtualHost> </VirtualHost>
<VirtualHost *:{{ keystone_admin_port }}> <VirtualHost *:{{ keystone_admin_port }}>
...@@ -23,6 +24,6 @@ Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['addr ...@@ -23,6 +24,6 @@ Listen {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['addr
<IfVersion >= 2.4> <IfVersion >= 2.4>
ErrorLogFormat "%{cu}t %M" ErrorLogFormat "%{cu}t %M"
</IfVersion> </IfVersion>
ErrorLog /var/log/httpd/keystone.log ErrorLog /var/log/{{ apache_dir }}/keystone.log
CustomLog /var/log/httpd/keystone_access.log combined CustomLog /var/log/{{ apache_dir }}/keystone_access.log combined
</VirtualHost> </VirtualHost>
#!/bin/bash #!/bin/bash
SOURCE="/opt/kolla/keystone/keystone.conf" SOURCE="/opt/kolla/keystone/keystone.conf"
TARGET="/etc/keystone/keystone.conf" TARGET="/etc/keystone/keystone.conf"
SOURCE_WSGI="/opt/kolla/keystone/wsgi-keystone.conf"
TARGET_WSGI="/etc/httpd/conf.d/wsgi-keystone.conf"
OWNER="keystone" OWNER="keystone"
if [[ -f "$SOURCE" ]]; then if [[ -f "$SOURCE" ]]; then
...@@ -11,6 +9,15 @@ if [[ -f "$SOURCE" ]]; then ...@@ -11,6 +9,15 @@ if [[ -f "$SOURCE" ]]; then
chmod 0644 $TARGET chmod 0644 $TARGET
fi fi
if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
"${KOLLA_BASE_DISTRO}" == "debian" ]]; then
SOURCE_WSGI="/opt/kolla/keystone/wsgi-keystone.conf"
TARGET_WSGI="/etc/apache2/conf-enabled/wsgi-keystone.conf"
else
SOURCE_WSGI="/opt/kolla/keystone/wsgi-keystone.conf"
TARGET_WSGI="/etc/httpd/conf.d/wsgi-keystone.conf"
fi
if [[ -f "$SOURCE_WSGI" ]]; then if [[ -f "$SOURCE_WSGI" ]]; then
cp $SOURCE_WSGI $TARGET_WSGI cp $SOURCE_WSGI $TARGET_WSGI
chown ${OWNER}: $TARGET_WSGI chown ${OWNER}: $TARGET_WSGI
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
set -o errexit set -o errexit
CMD="/usr/sbin/httpd" # Loading common functions
ARGS="-DFOREGROUND"
# Loading common functions.
source /opt/kolla/kolla-common.sh source /opt/kolla/kolla-common.sh
if [[ "${KOLLA_BASE_DISTRO}" == "ubuntu" || \
"${KOLLA_BASE_DISTRO}" == "debian" ]]; then
CMD="/usr/sbin/apache2"
ARGS="-DFOREGROUND"
# Loading Apache2 ENV variables
source /etc/apache2/envvars
else
CMD="/usr/sbin/httpd"
ARGS="-DFOREGROUND"
fi
# Execute config strategy # Execute config strategy
set_configs set_configs
......
...@@ -42,7 +42,6 @@ RUN yum -y install \ ...@@ -42,7 +42,6 @@ RUN yum -y install \
RUN apt-get install -y --no-install-recommends \ RUN apt-get install -y --no-install-recommends \
apache2 \ apache2 \
keystone \
libapache2-mod-wsgi \ libapache2-mod-wsgi \
&& apt-get clean && apt-get clean
...@@ -54,8 +53,8 @@ RUN ln -s /keystone-* /keystone ...@@ -54,8 +53,8 @@ RUN ln -s /keystone-* /keystone
RUN cd /keystone \ RUN cd /keystone \
&& useradd --user-group keystone \ && useradd --user-group keystone \
&& pip install -r requirements.txt \ && pip install -r requirements.txt \
&& pip install /keystone \ && pip install --install-option="--install-scripts=/usr/bin" /keystone \
&& mkdir /etc/keystone /var/www/cgi-bin/keystone \ && mkdir -p /etc/keystone /var/www/cgi-bin/keystone /var/log/apache2 /home/keystone \
&& cp -r /keystone/etc/* /etc/keystone/ \ && cp -r /keystone/etc/* /etc/keystone/ \
&& cp -a httpd/keystone.py /var/www/cgi-bin/keystone/admin \ && cp -a httpd/keystone.py /var/www/cgi-bin/keystone/admin \
&& cp -a httpd/keystone.py /var/www/cgi-bin/keystone/main && cp -a httpd/keystone.py /var/www/cgi-bin/keystone/main
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment