[ansible][fedora] Update package name
[barometer.git] / ci / install_dependencies.sh
1 #!/bin/bash
2 # Copyright 2017-21 Anuket, Intel Corporation and others
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 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
17 source $DIR/utility/package-list.sh
18
19 # Reuse build_base_machine.sh for this distro, to install the required packages
20 # Detect OS name and version from systemd based os-release file
21 . /etc/os-release
22 distro_dir="$DIR/../systems/$ID/$VERSION_ID"
23
24 # build base system using OS specific scripts
25 if [ -d "$distro_dir" ] && [ -e "$distro_dir/build_base_machine.sh" ]; then
26     sudo $distro_dir/build_base_machine.sh || ( echo "$distro_dir/build_base_machine.sh failed" && exit 1 )
27 else
28     "$distro_dir is not supported"
29     exit 1
30 fi
31
32 # For RPM build
33 mkdir -p $RPM_WORKDIR/{BUILD,RPMS,SOURCES,SPECS,SRPMS}