X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=installation%2Fsdnc%2Fsrc%2Fmain%2Fscripts%2FstartODL.sh;h=f029e87f3c5e0f18979e18977fc4eea81eb1a099;hb=460b375833c5216e5ddd3ade13865be05abcf95a;hp=bcf8893c7b95f7dbcae7e5f9fb02bceb3278c90f;hpb=d0a86a8593f3832f11198e91c2343db6fad5a1a9;p=sdnc%2Foam.git diff --git a/installation/sdnc/src/main/scripts/startODL.sh b/installation/sdnc/src/main/scripts/startODL.sh index bcf8893c..f029e87f 100755 --- a/installation/sdnc/src/main/scripts/startODL.sh +++ b/installation/sdnc/src/main/scripts/startODL.sh @@ -116,7 +116,9 @@ install_sdnr_oauth_features() { install_sdnr_northbound_features() { addToFeatureBoot "$SDNR_NORTHBOUND_BOOTFEATURES" } - +install_a1_northbound_features() { + addToFeatureBoot "$A1_ADAPTER_NORTHBOUND_BOOTFEATURES" +} # Reconfigure ODL from default single node configuration to cluster enable_odl_cluster() { @@ -212,7 +214,7 @@ printf "Installing SDNC/R from startODL.sh script\n" ODL_HOME=${ODL_HOME:-/opt/opendaylight/current} ODL_FEATURES_BOOT_FILE=$ODL_HOME/etc/org.apache.karaf.features.cfg -ODL_USER=${ODL_USER:-admin} +ODL_ADMIN_USERNAME=${ODL_ADMIN_USERNAME:-admin} ODL_REMOVEIDMDB=${ODL_REMOVEIDMDB:-true} if $ODL_REMOVEIDMDB ; then @@ -251,9 +253,12 @@ SDNRDBCOMMAND=${SDNRDBCOMMAND:--c init -db $SDNRDBURL -dbu $SDNRDBUSERNAME -dbp SDNR_NORTHBOUND=${SDNR_NORTHBOUND:-false} SDNR_NORTHBOUND_BOOTFEATURES=${SDNR_NORTHBOUND_BOOTFEATURES:-sdnr-northbound-all} +A1_ADAPTER_NORTHBOUND=${A1_ADAPTER_NORTHBOUND:-true} +A1_ADAPTER_NORTHBOUND_BOOTFEATURES=${A1_ADAPTER_NORTHBOUND_BOOTFEATURES:-a1-adapter-northbound} + NOTOK=1 #export for installCerts.py -export ODL_PASSWORD ODL_USER +export ODL_ADMIN_PASSWORD ODL_ADMIN_USERNAME if $JDEBUG ; then printf "Activate remote debugging\n" @@ -326,8 +331,8 @@ if $SDNRINIT ; then fi # do not start container if ADMIN_PASSWORD is not set -if [ -z "$ODL_PASSWORD" ]; then - echo "ODL_PASSWORD is not set" +if [ -z "$ODL_ADMIN_PASSWORD" ]; then + echo "ODL_ADMIN_PASSWORD is not set" exit 1 fi @@ -379,6 +384,8 @@ then if $ENABLE_ODL_CLUSTER ; then enable_odl_cluster ; fi if $SDNR_NORTHBOUND ; then install_sdnr_northbound_features ; fi + if $A1_ADAPTER_NORTHBOUND ; then install_a1_northbound_features ; fi + printf "%s" "Installed at $(date)" > "${SDNC_HOME}"/.installed fi