
Ubuntu/source deployment of horizon and placement-api failed: + exec /usr/sbin/apache2 -DFOREGROUND apache2: Syntax error on line 80 of /etc/apache2/apache2.conf: DefaultRuntimeDir must be a valid directory, absolute or relative to ServerRoot Once directory is in place it works fine. Change-Id: Icbd500e5b16deb0eafc0821a1c117794ddb8ae62
33 lines
991 B
Bash
33 lines
991 B
Bash
#!/bin/bash
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
placement-manage db sync
|
|
placement-manage db online_data_migrations
|
|
exit 0
|
|
fi
|
|
|
|
# DB synchronisation. To be executed prior to upgrading services.
|
|
if [[ "${!KOLLA_UPGRADE[@]}" ]]; then
|
|
placement-manage db sync
|
|
exit 0
|
|
fi
|
|
|
|
# Online data migrations. To be executed after upgrading services.
|
|
if [[ "${!KOLLA_OSM[@]}" ]]; then
|
|
placement-manage db online_data_migrations
|
|
exit 0
|
|
fi
|
|
|
|
# NOTE(pbourke): httpd will not clean up after itself in some cases which
|
|
# results in the container not being able to restart. (bug #1489676, 1557036)
|
|
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
|
|
# Loading Apache2 ENV variables
|
|
. /etc/apache2/envvars
|
|
install -d /var/run/apache2/
|
|
rm -rf /var/run/apache2/*
|
|
else
|
|
rm -rf /var/run/httpd/* /run/httpd/* /tmp/httpd*
|
|
fi
|