diff --git a/docker/common/base/kolla-common.sh b/docker/common/base/kolla-common.sh deleted file mode 100644 index cc960ca24f..0000000000 --- a/docker/common/base/kolla-common.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -set_configs() { - case $KOLLA_CONFIG_STRATEGY in - COPY_ALWAYS) - source /opt/kolla/config-external.sh - ;; - COPY_ONCE) - if [[ -f /configured ]]; then - echo 'INFO - This container has already been configured; Refusing to copy new configs' - else - source /opt/kolla/config-external.sh - touch /configured - fi - ;; - - *) - echo '$KOLLA_CONFIG_STRATEGY is not set properly' - exit 1 - ;; - esac -} diff --git a/docker_templates/base/kolla-common.sh b/docker_templates/base/kolla-common.sh deleted file mode 120000 index 03ffb4e73b..0000000000 --- a/docker_templates/base/kolla-common.sh +++ /dev/null @@ -1 +0,0 @@ -../../docker/common/base/kolla-common.sh \ No newline at end of file diff --git a/docker_templates/base/kolla-common.sh b/docker_templates/base/kolla-common.sh new file mode 100644 index 0000000000..cc960ca24f --- /dev/null +++ b/docker_templates/base/kolla-common.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +set_configs() { + case $KOLLA_CONFIG_STRATEGY in + COPY_ALWAYS) + source /opt/kolla/config-external.sh + ;; + COPY_ONCE) + if [[ -f /configured ]]; then + echo 'INFO - This container has already been configured; Refusing to copy new configs' + else + source /opt/kolla/config-external.sh + touch /configured + fi + ;; + + *) + echo '$KOLLA_CONFIG_STRATEGY is not set properly' + exit 1 + ;; + esac +}