We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e478adc + b0714b2 commit d066f4bCopy full SHA for d066f4b
docker/heat/heat-base/extend_start.sh
@@ -3,6 +3,9 @@
3
if [[ ! -d "/var/log/kolla/heat" ]]; then
4
mkdir -p /var/log/kolla/heat
5
fi
6
+if [[ $(stat -c %U:%G /var/log/kolla/heat) != "heat:kolla" ]]; then
7
+ chown -R heat:kolla /var/log/kolla/heat
8
+fi
9
if [[ $(stat -c %a /var/log/kolla/heat) != "755" ]]; then
10
chmod 755 /var/log/kolla/heat
11
0 commit comments