Added seed code for caas-kubernetes.
[ta/caas-kubernetes.git] / docker-build / hyperkube / common_scripts / wait-for-files
1 #!/bin/sh
2 # Copyright 2019 Nokia
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 file_names=$1
17 retry_counter=${2:-12}
18 echo ${retry_counter}
19 I=0
20 Err_Flag=1
21
22 while  [ $Err_Flag -ne 0 ] && [ $I -lt ${retry_counter} ]
23 do
24   Err_Flag=0
25   for i in ${file_names};
26   do
27     if [ ! -e "${i}" ]
28     then
29       Err_Flag=$((Err_Flag+1))
30     fi
31   done
32   if [ $Err_Flag -ne 0 ]
33   then
34     I=$((I+1))
35     sleep 5
36   fi
37 done
38
39 if [ $I -ge ${retry_counter} ]
40 then
41   echo "WARNING: At least one of the following file not found: ${file_names} !"
42   echo "WARNING: Exiting!"
43   exit 1
44 else
45   echo "INFO: ${file_names} files found."
46 fi