diff options
author | Haddox, Anthony <ah0647@att.com> | 2019-01-16 08:08:35 -0800 |
---|---|---|
committer | Haddox, Anthony <ah0647@att.com> | 2019-01-18 06:23:03 -0800 |
commit | 50bd4a0f591d9d00335b008a9e66f1906d40bc20 (patch) | |
tree | 8ddbec3d4f8ea120ec948ac8b14fc19141a2c1c2 /daexim-offsite-backup/installer/src/main/resources/scripts/install-feature.sh | |
parent | 90adbb654c878bfc9e1ba61c75feb3cba8280733 (diff) |
[CCSDK-953]Create Daexim Offsite Backup
Inital commit of ODL feature
Issue-ID: CCSDK-953
Change-Id: I7eb64fc9f414083db424700f2c901ba0a66cb0c4
Signed-off-by: Haddox, Anthony <ah0647@att.com>
Diffstat (limited to 'daexim-offsite-backup/installer/src/main/resources/scripts/install-feature.sh')
-rw-r--r-- | daexim-offsite-backup/installer/src/main/resources/scripts/install-feature.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/daexim-offsite-backup/installer/src/main/resources/scripts/install-feature.sh b/daexim-offsite-backup/installer/src/main/resources/scripts/install-feature.sh new file mode 100644 index 000000000..1d7be149e --- /dev/null +++ b/daexim-offsite-backup/installer/src/main/resources/scripts/install-feature.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +### +# ============LICENSE_START======================================================= +# openECOMP : SDN-C +# ================================================================================ +# Copyright (C) 2018 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========================================================= +### + +ODL_HOME=${ODL_HOME:-/opt/opendaylight/current} +ODL_KARAF_CLIENT=${ODL_KARAF_CLIENT:-${ODL_HOME}/bin/client} +INSTALLERDIR=$(dirname $0) + +REPOZIP=${INSTALLERDIR}/${features.boot}-${project.version}-repo.zip + +if [ -f ${REPOZIP} ] +then + unzip -d ${ODL_HOME} ${REPOZIP} +else + echo "ERROR : repo zip ($REPOZIP) not found" + exit 1 +fi + +${ODL_KARAF_CLIENT} feature:repo-add ${features.repositories} +${ODL_KARAF_CLIENT} feature:install ${features.boot} |