4607ab5e53
set_configs.py has logic to handle chown of directories. Simplify the codebase by removing these unnessary chowns. Further the chowns cause some forms of NFS backed storage to not work properly. Change-Id: I8df95d06b1010778deb3e2a3065aaab26ed2eb6a Closes-Bug: #1693973
9 lines
222 B
Bash
9 lines
222 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -d "/var/log/kolla/elasticsearch" ]]; then
|
|
mkdir -p /var/log/kolla/elasticsearch
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/elasticsearch) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/elasticsearch
|
|
fi
|