Unify Centos and Ubuntu Source Install - Zaqar

A change merged in the base allows for Centos and Ubuntu to install
all python things to the same locations. This updates the source
section to reflect that change.

Change-Id: I6b66fad8c06416f6b9f17348301dcb1e91fe50cd
Partially-Implements: blueprint install-from-ubuntu
This commit is contained in:
Sam Yaple 2015-08-27 10:39:44 +00:00
parent eecf6581a4
commit 5b0aef1f3d

View File

@ -14,21 +14,17 @@ RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
{% endif %}
{% elif install_type == 'source' %}
ADD ./zaqar.tar /
RUN ln -s /zaqar-* /zaqar
RUN cd /zaqar \
ADD zaqar.tar /
RUN ln -s /zaqar-* zaqar \
&& useradd --user-group zaqar \
&& pip install -r requirements.txt \
&& pip install /zaqar \
&& mkdir /etc/zaqar /var/log/zaqar \
&& pip --no-cache-dir install /zaqar \
&& mkdir -p /etc/zaqar /var/log/zaqar /home/zaqar \
&& cp -r /zaqar/etc/* /etc/zaqar/ \
&& rm -rf /root/.cache
&& chown -R zaqar: /etc/zaqar /var/log/zaqar /home/zaqar
{% endif %}
COPY ./start.sh /start.sh
COPY start.sh /
COPY config-external.sh /opt/kolla/
CMD ["/start.sh"]