summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'base/all/root/scripts/tasks/install_build.sh')
-rwxr-xr-xbase/all/root/scripts/tasks/install_build.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/base/all/root/scripts/tasks/install_build.sh b/base/all/root/scripts/tasks/install_build.sh
deleted file mode 100755
index cc67d58..0000000
--- a/base/all/root/scripts/tasks/install_build.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# Setup RPM development
-echo "Installing RPM developing and setting up rpm build"
-yum -y install rpmdevtools
-
-# Install the performance co-pilot packages to allow building of the
-# CTDB pmda code. It is OK if this fails (these packages are only
-# available in EPEL) since this script will continue...
-echo "Installing PCP development libraries - this may fail"
-yum -y install pcp-libs pcp-libs-devel || true
-
-# Packages required for samba development
-echo "Installing Samba build dependencies"
-yum -y install readline-devel libacl-devel e2fsprogs-devel \
- libxslt docbook-utils docbook-style-xsl dbus-devel \
- libaio-devel libcap-devel quota-devel \
- perl-Parse-Yapp perl-ExtUtils-MakeMaker
-
-exit 0