8484190e77
All Apache httpd setup has been moved to a new helper script, kolla_httpd_setup. This includes the existing clean of /run/httpd, /var/run/httpd, /tmp/httpd etc. Horizon has an additional bit of Apache config for Debian/binary, which has been kept in extend_start.sh for horizon. Change-Id: Ia2af74b69c151db0bd7e452460b0babcee50b282 Related: blueprint centos-rhel-8
11 lines
228 B
Bash
11 lines
228 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -d "/var/log/kolla/heat" ]]; then
|
|
mkdir -p /var/log/kolla/heat
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/heat) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/heat
|
|
fi
|
|
|
|
. /usr/local/bin/kolla_heat_extend_start
|