summaryrefslogtreecommitdiffstats
path: root/base/all/root/scripts/tasks/install_clusterfs_gpfs.sh
blob: f12473d965dc3886b21fcfbccb1832e39566ac5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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)