blob: 8b290128b37447dcdde3fbebc89092f592956311 [file] [log] [blame]
Jorge Hernandezdec69f42018-05-15 16:32:20 -05001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# ONAP
5# ================================================================================
6# Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
7# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END=========================================================
20#
21
22# #################################
23# Usage
24# #################################
25
26function usage {
27 echo
28 echo "Usage: $(basename $0)"
29 echo
30}
31
32if [[ ${DEBUG} == y ]]; then
33 set -x
34fi
35
36if [[ -z ${BUILD_VERSION} ]]; then
37 echo "no BUILD_VERSION available as environment variable""
38 usage
39 exit 1
40fi
41
42if [[ -z ${POLICY_INSTALL} ]]; then
43 echo "no POLICY_INSTALL available as environment variable""
44 usage
45 exit 2
46fi
47
48CONFIG_DIR=$(dirname "$0")
49echo "invoking ${CONFIG_DIR}/apps-install.sh for controlloop ${BUILD_VERSION} at ${POLICY_INSTALL}"
50export DEBUG=y
51bash ${CONFIG_DIR}/apps-install.sh controlloop ${BUILD_VERSION} ${POLICY_INSTALL}
52unzip -o ${POLICY_INSTALL}/app*.zip -d ${POLICY_INSTALL}