summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_clusterfs_gpfs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'base/all/root/scripts/tasks/install_clusterfs_gpfs.sh')
-rwxr-xr-xbase/all/root/scripts/tasks/install_clusterfs_gpfs.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/base/all/root/scripts/tasks/install_clusterfs_gpfs.sh b/base/all/root/scripts/tasks/install_clusterfs_gpfs.sh
deleted file mode 100755
index f12473d..0000000
--- a/base/all/root/scripts/tasks/install_clusterfs_gpfs.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-#config: GPFS_BASE_VERSION RHEL_ARCH
-
-# Must force the base GPFS package first, due to the way GPFS updates
-# work.
-echo "Installing GPFS base"
-yum -y install "gpfs.base-${GPFS_BASE_VERSION}.${RHEL_ARCH}"
-
-echo "Updating GPFS base"
-yum -y update
-
-echo "Installing remaining GPFS packages"
-yum -y install gpfs.docs gpfs.gpl gpfs.msg.en_US gpfs.gskit
-
-echo "Adding GPFS's bin to PATH"
-cat >/etc/profile.d/gpfs-autocluster.sh <<EOF
-# Added by autocluster
-pathmunge /usr/lpp/mmfs/bin
-EOF
-
-echo "Rebuilding the GPFS modules"
-(cd /usr/lpp/mmfs/src && make Autoconfig World InstallImages)