kolla/docker/tacker/tacker-base/extend_start.sh
Eduardo Gonzalez 7b2dea5506 Implement tacker-conductor image, rework all tacker
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
2017-08-20 09:58:27 +00:00

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