11597cc2f4
This will switch config-external to using wsgi vs evenlet for keystone. Partially Implements: blueprint ansible-service Change-Id: I85a88c813ed36d827916796199dad735b2d44b40
14 lines
467 B
Bash
14 lines
467 B
Bash
#!/bin/bash
|
|
|
|
if [[ -f /opt/kolla/keystone/wsgi-keystone.conf ]]; then
|
|
cp /opt/kolla/keystone/wsgi-keystone.conf /etc/httpd/conf.d/
|
|
chown root:keystone /etc/httpd/conf.d/wsgi-keystone.conf
|
|
chmod 0644 /etc/httpd/conf.d/wsgi-keystone.conf
|
|
fi
|
|
|
|
if [[ -f /opt/kolla/keystone/keystone.conf ]]; then
|
|
cp /opt/kolla/keystone/keystone.conf /etc/keystone/keystone.conf
|
|
chown keystone: /etc/keystone/keystone.conf
|
|
chmod 0644 /etc/keystone/keystone.conf
|
|
fi
|