From b211d7296c9cd2edaca9da9d17f3a42655c6cc93 Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Fri, 8 Feb 2019 15:20:38 -0500 Subject: [PATCH] Fix Fluorine installation Fluorine feature installation omitted adding SDNC features to featuresBoot Change-Id: I848dfe730e1dd1048c565ffc5b39ae7e601ae950 Issue-ID: SDNC-552 Signed-off-by: Timoney, Dan (dt5972) --- installation/sdnc/src/main/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/sdnc/src/main/docker/Dockerfile b/installation/sdnc/src/main/docker/Dockerfile index 550cd0cd..7f7c0dea 100755 --- a/installation/sdnc/src/main/docker/Dockerfile +++ b/installation/sdnc/src/main/docker/Dockerfile @@ -33,7 +33,7 @@ RUN rsync -a /tmp/system $ODL_HOME && rm -rf /tmp/system # Add SDNC repositories to boot repositories RUN cp $ODL_HOME/etc/org.apache.karaf.features.cfg $ODL_HOME/etc/org.apache.karaf.features.cfg.orig RUN sed -i -e "\|featuresRepositories|s|$|,${SDNC_NORTHBOUND_REPO}|" $ODL_HOME/etc/org.apache.karaf.features.cfg -RUN sed -i -e "\|featuresBoot=config|s|$|,sdnc-northbound-all|" $ODL_HOME/etc/org.apache.karaf.features.cfg +RUN sed -i -e "\|featuresBoot[^a-zA-Z]|s|$|,sdnc-northbound-all|" $ODL_HOME/etc/org.apache.karaf.features.cfg ENTRYPOINT /opt/onap/sdnc/bin/startODL.sh -- 2.16.6