Remove bootstrap in etcd

Doing a chown during bootstrap is useles.
Is better do it during cotainer startup to ensure
always have proper permissions.

Change-Id: I9c6c876773288c2f951966498db0ff8af090ac20
Closes-Bug: #1697699
This commit is contained in:
Eduardo Gonzalez 2017-06-13 16:28:37 +02:00
parent a3ab3f2557
commit 11708962aa
1 changed files with 1 additions and 4 deletions

View File

@ -8,9 +8,6 @@ if [[ $(stat -c %a /var/log/kolla/etcd) != "755" ]]; then
chmod 755 /var/log/kolla/etcd
fi
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
# of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
if [[ $(stat -c %U /var/lib/etcd/) != "etcd" ]]; then
sudo chown etcd: /var/lib/etcd/
exit 0
fi