17333aed12
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
26 lines
685 B
Bash
26 lines
685 B
Bash
#!/bin/bash
|
|
SOURCE="/opt/kolla/keystone/keystone.conf"
|
|
TARGET="/etc/keystone/keystone.conf"
|
|
OWNER="keystone"
|
|
|
|
if [[ -f "$SOURCE" ]]; then
|
|
cp $SOURCE $TARGET
|
|
chown ${OWNER}: $TARGET
|
|
chmod 0644 $TARGET
|
|
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
|
|
cp $SOURCE_WSGI $TARGET_WSGI
|
|
chown ${OWNER}: $TARGET_WSGI
|
|
chmod 0644 $TARGET_WSGI
|
|
fi
|