Remove diffutils dependency
[aai/traversal.git] / aai-traversal / src / main / resources / docker / init-chef.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 # org.onap.aai
5 # ================================================================================
6 # Copyright © 2017 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 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 #
23
24 ##############################################################################
25 #       Script to initialize the chef-repo branch and.chef
26 #
27 ##############################################################################
28
29 cd /var/chef;
30
31 if [ ! -d "aai-config" ]; then
32
33     git clone --depth 1 -b ${CHEF_BRANCH} --single-branch ${CHEF_CONFIG_GIT_URL}/${CHEF_CONFIG_REPO}.git aai-config || {
34         echo "Error: Unable to clone the aai-config repo with url: ${CHEF_GIT_URL}/${CHEF_CONFIG_REPO}.git";
35         exit 1;
36     }
37
38 fi
39
40 if [ -d "aai-config/cookbooks/aai-traversal" ]; then
41
42     (cd aai-config/cookbooks/aai-traversal/ && \
43         for f in $(ls); do mv $f ../; done && \
44         cd ../ && rmdir aai-traversal);
45
46 fi;
47
48 if [ ! -d "aai-data" ]; then
49
50     git clone --depth 1 -b ${CHEF_BRANCH} --single-branch ${CHEF_DATA_GIT_URL}/aai-data.git aai-data || {
51         echo "Error: Unable to clone the aai-data repo with url: ${CHEF_GIT_URL}";
52         exit 1;
53     }
54
55 fi
56
57 chef-solo \
58    -c /var/chef/aai-data/chef-config/dev/.knife/solo.rb \
59    -j /var/chef/aai-config/cookbooks/runlist-aai-traversal.json \
60    -E ${AAI_CHEF_ENV};
61