12017c8d7761abfae9f7b16340c0f33279e83698
[yaml_builds.git] / tools / generate_yamls.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.        #
4 #                                                                            #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may    #
6 # not use this file except in compliance with the License.                   #
7 #                                                                            #
8 # You may obtain a copy of the License at                                    #
9 #       http://www.apache.org/licenses/LICENSE-2.0                           #
10 #                                                                            #
11 # Unless required by applicable law or agreed to in writing, software        #
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT  #
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.           #
14 # See the License for the specific language governing permissions and        #
15 # limitations under the License.                                             #
16 ##############################################################################
17
18 set -x
19
20 source $(dirname $0)/setenv.sh
21
22 if [ -z "$1" ]
23 then
24   echo "Please pass site name as command line argument"
25   exit -2
26 else
27   SITE=${SITE:-$1}
28   echo "SITE=$SITE"
29 fi
30
31 # ECHO INPUT FILE TO LOGS FOR TROUBLESHOOTING
32 echo "#######################################"
33 echo "# USING INPUT FILE [$SITE.yaml]"
34 echo "#######################################"
35 sed -E 's/(^.*password:).*/\1 ###PASSWORD REMOVED####/g' $SITE.yaml
36 echo "#######################################"
37
38 cd $YAML_BUILDS
39 python ./scripts/jcopy.py $SITE.yaml ./tools/j2/set_site_env.sh ./tools/env_$SITE.sh
40 source ./tools/env_$SITE.sh
41
42 if [ ! -d "$AIRSHIP_TREASUREMAP" ]; then
43   echo "ERROR: Missing AIRSHIP_TREASUREMAP directory [$AIRSHIP_TREASUREMAP]."
44   exit -1
45 fi
46
47 if [ ! -d "$AIRSHIP_TEMPLATES" ]; then
48   echo "ERROR: Missing AIRSHIP_TEMPLATES directory [$AIRSHIP_TEMPLATES]."
49   exit -1
50 fi
51
52 python ./scripts/jcopy.py $SITE.yaml $AIRSHIP_TEMPLATES $YAML_BUILDS/site/$SITE
53 cp -r site/common/* site/$SITE/