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
|