Merge "octavia: Fix log dir permissions"

This commit is contained in:
Zuul 2021-04-01 19:47:35 +00:00 committed by Gerrit Code Review
commit ac4e496eeb
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,9 @@ OCTAVIA_LOG_DIR=/var/log/kolla/octavia
if [[ ! -d "${OCTAVIA_LOG_DIR}" ]]; then
mkdir -p ${OCTAVIA_LOG_DIR}
fi
if [[ $(stat -c %U:%G ${OCTAVIA_LOG_DIR}) != "octavia:kolla" ]]; then
chown -R octavia:kolla /var/log/kolla/octavia
fi
if [[ $(stat -c %a ${OCTAVIA_LOG_DIR}) != "755" ]]; then
chmod 755 ${OCTAVIA_LOG_DIR}
fi