diff options
author | DarraghEgan <darragh.egan@est.tech> | 2019-03-21 11:27:17 +0000 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-03-25 16:54:58 +0000 |
commit | aebe4d797185c07aebea6c8a78b3fdc8a8f5318b (patch) | |
tree | 20fd9cd84889d9af826fea7d8f626bd6b25b220c /installation | |
parent | dfe82e2ec91671d419f2d8af66764fa4c4d3406e (diff) |
SDNC-555: Install ODL features for NETCONF
SDNC install script should enable all ODL
features required for NETCONF support.
Features:
odl-netconf-connector-all
odl-netconf-clustered-topology
Issue-ID: SDNC-555
Change-Id: I9060c2cadad2c2e4224d63ba7887f089a0c23a3f
Signed-off-by: DarraghEgan <darragh.egan@est.tech>
Former-commit-id: 5d727385a3a5818fc41e88c60ce0cbd27265c0d1
Diffstat (limited to 'installation')
-rwxr-xr-x | installation/sdnc/src/main/docker/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/installation/sdnc/src/main/docker/Dockerfile b/installation/sdnc/src/main/docker/Dockerfile index df392101..e7d592eb 100755 --- a/installation/sdnc/src/main/docker/Dockerfile +++ b/installation/sdnc/src/main/docker/Dockerfile @@ -36,6 +36,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 chown -R odl /opt USER odl |