diff options
author | Dan Smith <daniel.smith@ericsson.com> | 2015-06-02 16:01:54 -0400 |
---|---|---|
committer | Dan Smith <daniel.smith@ericsson.com> | 2015-06-02 16:02:51 -0400 |
commit | 0266c6f64cfcf71f1f7f4c845ce5d38412056e2f (patch) | |
tree | 5325b9d06a9b985d4cf78dbca0c67aa314ddb459 /common/puppet-opnfv | |
parent | 84c696507fb513e6a76e6e50e5c65397cb45a381 (diff) |
Adding fix to ensure S3 is built and deployed.
Adding change.sh (for automation of ODL after deployemt) and updates odl_docker.pp file
Change-Id: I7868f8e7381d726f1ce7fd9600ba048ee3119ab7
JIRA: 0
Signed-off-by: Dan Smith <daniel.smith@ericsson.com>
Diffstat (limited to 'common/puppet-opnfv')
-rw-r--r-- | common/puppet-opnfv/manifests/templates/dockerfile/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/puppet-opnfv/manifests/templates/dockerfile/Dockerfile b/common/puppet-opnfv/manifests/templates/dockerfile/Dockerfile index 5241a80..80a92d8 100644 --- a/common/puppet-opnfv/manifests/templates/dockerfile/Dockerfile +++ b/common/puppet-opnfv/manifests/templates/dockerfile/Dockerfile @@ -38,11 +38,11 @@ RUN bash -c 'echo "export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64" >> ~/.bas #Now lets got and fetch the ODL distribution RUN echo "Fetching ODL" -RUN wget https://nexus.opendaylight.org/content/groups/public/org/opendaylight/integration/distribution-karaf/0.2.2-Helium-SR2/distribution-karaf-0.2.2-Helium-SR2.tar.gz -O /opt/odl_source/distribution-karaf-0.2.2-Helium-SR2.tar.gz +RUN wget https://nexus.opendaylight.org/content/groups/public/org/opendaylight/integration/distribution-karaf/0.2.3-Helium-SR3/distribution-karaf-0.2.3-Helium-SR3.tar.gz -O /opt/odl_source/distribution-karaf-0.2.3-Helium-SR3.tar.gz RUN echo "Untarring ODL inplace" RUN mkdir -p /opt/odl -RUN tar zxvf /opt/odl_source/distribution-karaf-0.2.2-Helium-SR2.tar.gz -C /opt/odl +RUN tar zxvf /opt/odl_source/distribution-karaf-0.2.3-Helium-SR3.tar.gz -C /opt/odl RUN echo "Installing DLUX and other features into ODL" #COPY dockerfile/container_scripts/start_odl_docker.sh /etc/init.d/start_odl_docker.sh |