From 0c92cc1b3f0cdbdfbd1b01450648dbabe0ff44ae Mon Sep 17 00:00:00 2001 From: Ryan Hallisey Date: Thu, 13 Aug 2015 16:06:40 -0400 Subject: [PATCH] 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 Closes-Bug: #1484675 --- docker/centos/source/magnum/magnum-base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/centos/source/magnum/magnum-base/Dockerfile b/docker/centos/source/magnum/magnum-base/Dockerfile index ffcee610f9..9cca847fb1 100644 --- a/docker/centos/source/magnum/magnum-base/Dockerfile +++ b/docker/centos/source/magnum/magnum-base/Dockerfile @@ -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