Jorge Hernandez | dec69f4 | 2018-05-15 16:32:20 -0500 | [diff] [blame^] | 1 | #!/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 | |
| 26 | function usage { |
| 27 | echo |
| 28 | echo "Usage: $(basename $0)" |
| 29 | echo |
| 30 | } |
| 31 | |
| 32 | if [[ ${DEBUG} == y ]]; then |
| 33 | set -x |
| 34 | fi |
| 35 | |
| 36 | if [[ -z ${BUILD_VERSION} ]]; then |
| 37 | echo "no BUILD_VERSION available as environment variable"" |
| 38 | usage |
| 39 | exit 1 |
| 40 | fi |
| 41 | |
| 42 | if [[ -z ${POLICY_INSTALL} ]]; then |
| 43 | echo "no POLICY_INSTALL available as environment variable"" |
| 44 | usage |
| 45 | exit 2 |
| 46 | fi |
| 47 | |
| 48 | CONFIG_DIR=$(dirname "$0") |
| 49 | echo "invoking ${CONFIG_DIR}/apps-install.sh for controlloop ${BUILD_VERSION} at ${POLICY_INSTALL}" |
| 50 | export DEBUG=y |
| 51 | bash ${CONFIG_DIR}/apps-install.sh controlloop ${BUILD_VERSION} ${POLICY_INSTALL} |
| 52 | unzip -o ${POLICY_INSTALL}/app*.zip -d ${POLICY_INSTALL} |