Magnum install from source incorrectly places config

The magnum base Dockerfile is placing magnum.conf in
/etc/magnum/magnum/magnum.conf. It should be in
/etc/magnum/magnum.conf.  We need to still cp everything
in that directory because there is more than just the config.

Change-Id: I7aa85f465fbd29a882c6628970cade732c818d8f
Co-Authored-By: Ian Main <imain@redhat.com>
Closes-Bug: #1484675
This commit is contained in:
Ryan Hallisey 2015-08-13 16:06:40 -04:00
parent 77e08a1f5f
commit 0c92cc1b3f

@ -9,5 +9,5 @@ RUN cd /magnum \
&& pip install -r requirements.txt \
&& pip install /magnum \
&& mkdir /etc/magnum /var/log/magnum \
&& cp -r /magnum/etc/* /etc/magnum/ \
&& cp -r /magnum/etc/* /etc/ \
&& rm -rf /root/.cache