Rewrite autocluster in Python
[tridge/autocluster.git] / base / all / root / scripts / tasks / install_build.sh
1 #!/bin/sh
2
3 # Setup RPM development
4 echo "Installing RPM developing and setting up rpm build"
5 yum -y install rpmdevtools
6
7 # Install the performance co-pilot packages to allow building of the
8 # CTDB pmda code.  It is OK if this fails (these packages are only
9 # available in EPEL) since this script will continue...
10 echo "Installing PCP development libraries - this may fail"
11 yum -y install pcp-libs pcp-libs-devel || true
12
13 # Packages required for samba development
14 echo "Installing Samba build dependencies"
15 yum -y install readline-devel libacl-devel e2fsprogs-devel \
16     libxslt docbook-utils docbook-style-xsl dbus-devel \
17     libaio-devel libcap-devel quota-devel \
18     perl-Parse-Yapp perl-ExtUtils-MakeMaker
19
20 exit 0