93b5c12abf
Change-Id: I8970d02ccbed1dfc221683e273edc2680207056b Partial-Bug: #1546944
11 lines
233 B
Bash
11 lines
233 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
|
|
|
|
source /usr/local/bin/kolla_heat_extend_start
|