diff options
author | Al Rotundo <ar3165@att.com> | 2017-09-20 20:08:52 +0000 |
---|---|---|
committer | Al Rotundo <arotundo@att.com> | 2017-09-20 20:44:22 +0000 |
commit | b50a02c4a97676a8d4e976dbbcd6c7f8e21713a3 (patch) | |
tree | ef673f7815011880d62863ad2d65f9ed98388729 /admportal/shell | |
parent | 7f68e7464fa4076271c395c450d1b8b2a7afc6df (diff) |
remove jar files
jar files from lib directory were removed that were not needed. Added needed files into pom.xml file.
Change-Id: I7cd15cdb3b65f790e4dbb4334753cb51d08f1803
Issue-ID:SDNC-81
Signed-off-by: Al Rotundo <arotundo@att.com>
Former-commit-id: a11ee6416f6c565a3e8f979593855ac42dba10ce
Diffstat (limited to 'admportal/shell')
-rwxr-xr-x | admportal/shell/start_portal.sh | 10 | ||||
-rw-r--r-- | admportal/shell/svclogic.sh | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/admportal/shell/start_portal.sh b/admportal/shell/start_portal.sh index 976502cd..8a0c4452 100755 --- a/admportal/shell/start_portal.sh +++ b/admportal/shell/start_portal.sh @@ -1,8 +1,8 @@ #. ./set-https-env.sh #cd ../bin #cp ../config/config.json.https ../config/config.json -export PROJECT_HOME=/opt/openecomp/sdnc -export PROJECT_RUNTIME_BASE=/opt/openecomp/sdnc +export PROJECT_HOME=/opt/onap/sdnc +export PROJECT_RUNTIME_BASE=/opt/onap/sdnc #export JAVA_HOME=/usr/lib/jvm/java-7-oracle export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64 export SSL_ENABLED=false @@ -19,11 +19,11 @@ export MAIN_MENU SSL_ENABLED=`python $PROJECT_HOME/admportal/shell/getAdmPortalProp.py sslEnabled | sed -e 's|['\'']||g'` export SSL_ENABLED -if [ ! -d /opt/openecomp/sdnc/admportal/node_modules ]; then - cd /opt/openecomp/sdnc/admportal && npm install +if [ ! -d /opt/onap/sdnc/admportal/node_modules ]; then + cd /opt/onap/sdnc/admportal && npm install fi -cd /opt/openecomp/sdnc/admportal +cd /opt/onap/sdnc/admportal node shell/www #if [ "true" == "${SSL_ENABLED}" ]; then #pm2 startOrRestart process.https.json diff --git a/admportal/shell/svclogic.sh b/admportal/shell/svclogic.sh index aca6bf1f..67ada89e 100644 --- a/admportal/shell/svclogic.sh +++ b/admportal/shell/svclogic.sh @@ -29,4 +29,4 @@ do CLASSPATH=$CLASSPATH:${jar} done -java -cp ${CLASSPATH}:${MYSQL_JDBC_DRIVER} org.openecomp.sdnc.sli.SvcLogicParser $* +java -cp ${CLASSPATH}:${MYSQL_JDBC_DRIVER} org.onap.ccsdk.sli.core.sli.SvcLogicParser $* |