[ansible][fedora] Update package name
[barometer.git] / ci / utility / rpms_check.sh
1 #!/bin/sh
2 # Copyright (C) 2017-2019 Intel Corporation and OPNFV. All rights reserved.
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,
11 # software 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
14 # and limitations under the License.
15 #
16
17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18 source $DIR/package-list.sh
19
20 if [ -d $RPM_WORKDIR/RPMS/x86_64 ]
21 then
22     ls $RPM_WORKDIR/RPMS/x86_64 > list_of_gen_pack
23 else
24     echo "Can't access folder $RPM_WORKDIR with rpm packages"
25     exit 1
26 fi
27
28 for PACKAGENAME in `cat $DIR/rpms_list`
29 do
30         if ! grep -q $PACKAGENAME list_of_gen_pack
31         then
32                 echo "$PACKAGENAME is missing"
33                 exit 2
34         fi
35 done