Enable write_redis plugin for barometer-collectd
[barometer.git] / systems / fedora / 22 / build_base_machine.sh
1 #!/bin/bash
2 #
3 # Build a base machine for Fedora 22
4 #
5 # Copyright 2015 OPNFV, Intel Corporation.
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 #   Aihua Li, Huawei Technologies.
21 #   Martin Klozik, Intel Corporation.
22 #   Abdul Halim, Intel Corporation.
23
24 dnf -y install $(echo "
25 # Make and Compilers
26 make
27 automake
28 gcc
29 gcc-c++
30 libxml2
31 glibc
32 glib2-devel
33 kernel-devel
34 kernel-modules-extra
35 pixman-devel
36 openssl-devel
37 net-snmp-devel
38
39 # tools
40 curl
41 autoconf
42 libtool
43 libpcap-devel
44 libnet
45 libvirt-daemon
46 vim
47 wget
48 git
49 pciutils
50 cifs-utils
51 socat
52 hiredis-devel
53
54 # install git-review tool
55 git-review
56 " | grep -v ^#)