7b2dea5506
Tacker is broken in pike without conductor images. Conductor is needed to communicate with mistral for VIM monitoring This change rework tacker image to allow tacker-conductor service image. Split tacker global image into tacker-server and tacker-conductor. Closes-Bug: #1710874 Change-Id: I52778e86e4f2c297ead8d4b09983e5e38ca88c70
11 lines
238 B
Bash
11 lines
238 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -d "/var/log/kolla/tacker" ]]; then
|
|
mkdir -p /var/log/kolla/tacker
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla/tacker) != "755" ]]; then
|
|
chmod 755 /var/log/kolla/tacker
|
|
fi
|
|
|
|
. /usr/local/bin/kolla_tacker_extend_start
|