diff options
author | DarraghEgan <darragh.egan@est.tech> | 2019-04-01 18:02:45 +0000 |
---|---|---|
committer | DarraghEgan <darragh.egan@est.tech> | 2019-04-01 18:02:45 +0000 |
commit | 53fff87e02f797ff117347dc76ed2f9d8262f826 (patch) | |
tree | a93f5d2ed80a042883420f29a74cbe1cd367d8f1 /installation | |
parent | 91321bf5d6322764f530da2e7a399231755104d2 (diff) |
SDNC-555: Install ODL features for NETCONF
Bug Fix:
SDNC install script should enable all ODL
features required for NETCONF support.
Features:
odl-netconf-clustered-topology
Issue-ID: SDNC-555
Change-Id: I41db875e769523ad578da3bd92800fe18460b93d
Signed-off-by: DarraghEgan <darragh.egan@est.tech>
Former-commit-id: a57df931e3d7fda65f78ad503614eabd8a51c691
Diffstat (limited to 'installation')
-rwxr-xr-x | installation/sdnc/src/main/docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installation/sdnc/src/main/docker/Dockerfile b/installation/sdnc/src/main/docker/Dockerfile index a9aa42ec..99bfa3a9 100755 --- a/installation/sdnc/src/main/docker/Dockerfile +++ b/installation/sdnc/src/main/docker/Dockerfile @@ -37,7 +37,7 @@ RUN rsync -a /tmp/system $ODL_HOME && rm -rf /tmp/system 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[^a-zA-Z]|s|$|,sdnc-northbound-all|" $ODL_HOME/etc/org.apache.karaf.features.cfg -RUN sed -i "s/odl-restconf-all/odl-restconf-all,odl-netconf-connector-all,odl-netconf-clustered-topology/g" $ODL_HOME/etc/org.apache.karaf.features.cfg +RUN sed -i "s/odl-restconf-all/odl-restconf-all,odl-netconf-clustered-topology/g" $ODL_HOME/etc/org.apache.karaf.features.cfg RUN chown -R odl /opt USER odl |