Skip to content
Snippets Groups Projects
Commit 93b5c12a authored by Éric Lemoine's avatar Éric Lemoine
Browse files

Remove duplicate code in heat extend_start.sh

Change-Id: I8970d02ccbed1dfc221683e273edc2680207056b
Partial-Bug: #1546944
parent 3f8bc072
No related branches found
No related tags found
No related merge requests found
...@@ -16,8 +16,8 @@ RUN apt-get install -y --no-install-recommends \ ...@@ -16,8 +16,8 @@ RUN apt-get install -y --no-install-recommends \
{% endif %} {% endif %}
{% endif %} {% endif %}
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_heat_extend_start
RUN chmod 755 /usr/local/bin/kolla_extend_start RUN chmod 755 /usr/local/bin/kolla_heat_extend_start
{{ include_footer }} {{ include_footer }}
......
#!/bin/bash #!/bin/bash
if [[ ! -d "/var/log/kolla/heat" ]]; then
mkdir -p /var/log/kolla/heat
fi
if [[ $(stat -c %a /var/log/kolla/heat) != "755" ]]; then
chmod 755 /var/log/kolla/heat
fi
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases # Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
# of the KOLLA_BOOTSTRAP variable being set, including empty. # of the KOLLA_BOOTSTRAP variable being set, including empty.
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
......
...@@ -30,4 +30,5 @@ RUN ln -s heat-base-source/* heat \ ...@@ -30,4 +30,5 @@ RUN ln -s heat-base-source/* heat \
COPY extend_start.sh /usr/local/bin/kolla_extend_start COPY extend_start.sh /usr/local/bin/kolla_extend_start
RUN usermod -a -G kolla heat \ RUN usermod -a -G kolla heat \
&& chmod 755 /usr/local/bin/kolla_extend_start && touch /usr/local/bin/kolla_heat_extend_start \
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_heat_extend_start
...@@ -6,3 +6,5 @@ fi ...@@ -6,3 +6,5 @@ fi
if [[ $(stat -c %a /var/log/kolla/heat) != "755" ]]; then if [[ $(stat -c %a /var/log/kolla/heat) != "755" ]]; then
chmod 755 /var/log/kolla/heat chmod 755 /var/log/kolla/heat
fi fi
source /usr/local/bin/kolla_heat_extend_start
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment