[ansible][fedora] Update package name
[barometer.git] / systems / build_base_machine.sh
1 #!/bin/bash
2 #
3 # Top level scripts to build basic setup for the host
4 #
5
6 # Copyright 2015-2017 OPNFV, Intel Corporation.
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
20 #
21 # Contributors:
22 #   Aihua Li, Huawei Technologies.
23 #   Abdul Halim, Intel Corporation.
24 #   Martin Klozik, Intel Corporation.
25 #   Maryam Tahhan, Intel Corporation.
26 #   Taras Chornyi, Intel Corporation.
27
28 ROOT_UID=0
29 SUDO=""
30
31 # function to emit error message before quitting
32 function die() {
33     echo $1
34     exit 1
35 }
36
37 # Detect OS name and version from systemd based os-release file
38 . /etc/os-release
39
40 # Get OS name (the First word from $NAME in /etc/os-release)
41 OS_NAME="$ID"
42
43 # check if root
44 if [ "$UID" -ne "$ROOT_UID" ]
45 then
46     # installation must be run via sudo
47     SUDO="sudo -E"
48 fi
49
50 if [ "$1" != "-f" ] && [ -d "/opt/collectd" ] || [ -d "/etc/collectd" ]
51 then
52     die "collectd is already installed on this system, if you wish to reinstall please rerun the script with a -f argument"
53 fi
54
55 # If there is version specific dir available then set distro_dir to that
56 distro_dir="$OS_NAME/$VERSION_ID"
57
58 # build base system using OS specific scripts
59 if [ -d "$distro_dir" ] && [ -e "$distro_dir/build_base_machine.sh" ]; then
60     $SUDO $distro_dir/build_base_machine.sh || die "$distro_dir/build_base_machine.sh failed"
61 else
62     die "$distro_dir is not supported"
63 fi
64 if [ -z ${DOCKER+x} ]; then
65        if [ ! -d /lib/modules/`uname -r`/build ] ; then
66         die "Kernel devel is not available for active kernel. It can be caused by recent kernel update. Please reboot and run $0 again."
67        fi
68 fi
69 # download and compile DPDK and Collectd
70 if [ -f ../src/Makefile ] ; then
71     cd ../src
72     make clobber || die "Make clobber failed"
73 if [ -z ${DOCKER+x} ]; then
74     make DOCKER=y install || die "Make install failed";
75 else
76     make install || die "Make install failed";
77 fi
78     cd -
79 else
80     die "Make failed; No Makefile"
81 fi