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