a2b130d6ba
Partially implements: blueprint heka Change-Id: I70e94f4ef7380c6f376a3066d7ddda042c703637
9 lines
198 B
Bash
9 lines
198 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -d "/var/log/kolla/neutron" ]]; then
|
|
mkdir -p /var/log/kolla/neutron
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/neutron) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/neutron
|
|
fi
|