Move wait_until_healthy() into setup_cluster.sh
[autocluster.git] / base / all / root / scripts / 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
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
17
18 exit 0