diff options
author | Patrick Brady <pb071s@att.com> | 2017-02-13 11:57:08 -0800 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2017-02-13 11:58:35 -0800 |
commit | 835142575e76466d46e98fbf7e73c5b6d65a8afe (patch) | |
tree | 1ef44f1f45f5f6be774ec29c64997e1c4afe60eb /platform-logic/installer/src/main/scripts/svclogic.sh | |
parent | bf5aefe3c4206c00469b691a64d7707aa61ab150 (diff) |
Initial OpenECOMP appc/deployment commit
Change-Id: I46850ced2a3ff7a55dd1e92ec4509bf728466ce9
Signed-off-by: Patrick Brady <pb071s@att.com>
Diffstat (limited to 'platform-logic/installer/src/main/scripts/svclogic.sh')
-rw-r--r-- | platform-logic/installer/src/main/scripts/svclogic.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/platform-logic/installer/src/main/scripts/svclogic.sh b/platform-logic/installer/src/main/scripts/svclogic.sh new file mode 100644 index 0000000..464a71c --- /dev/null +++ b/platform-logic/installer/src/main/scripts/svclogic.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +### +# ============LICENSE_START======================================================= +# openECOMP : SDN-C +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +BASEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" +JARDIR=${BASEDIR}/lib + +for jar in $JARDIR/*.jar +do + CLASSPATH=$CLASSPATH:${jar} +done + +java -cp ${CLASSPATH}:${MYSQL_JDBC_DRIVER} org.openecomp.sdnc.sli.SvcLogicParser $* |