From a02787ff306470a3ff0c107fad546858a18960b2 Mon Sep 17 00:00:00 2001 From: jjhua Date: Thu, 1 Mar 2012 06:08:20 +0000 Subject: [PATCH] mlnxofed_ib_install could be used for both rhels and sles git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11716 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- .../xcat/ib/netboot/sles/mlnxofed_ib_install | 61 ------------------- 1 file changed, 61 deletions(-) delete mode 100755 xCAT-server/share/xcat/ib/netboot/sles/mlnxofed_ib_install diff --git a/xCAT-server/share/xcat/ib/netboot/sles/mlnxofed_ib_install b/xCAT-server/share/xcat/ib/netboot/sles/mlnxofed_ib_install deleted file mode 100755 index 015538c30..000000000 --- a/xCAT-server/share/xcat/ib/netboot/sles/mlnxofed_ib_install +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -vx -# -# -# Sample script to customize options for Mellonax OFED IB support -# For AIX: -# TBD -# For Linux: -# - For full-disk installs: -# - Copy rpms to node -# - Install IB rpms -# - For diskless images: -# - Copy the packages to the images. -# - Install IB rpms - -OS=`uname` -#installroot='/install/netboot/sles11.1/x86_64/compute/rootimg' - -#OFED_DIR='/install/post/otherpkgs/sles11.1/x86_64/ofed/' -OFED_DIR=$ofeddir - -if [ -z "$OFED_DIR" ]; then - # try to default - OFED_DIR=$INSTALL_DIR/post/otherpkgs/$OSVER/$ARCH/ofed -fi - - - -if [ $NODESETSTATE != "genimage" ]; then - # running as a postscript in a full-disk install or AIX diskless install - installroot="" -fi - - - -if [ $OS != "AIX" ]; then - if [ $NODESETSTATE == "install" ] || [ $NODESETSTATE == "boot" ]; then - # Being run from a stateful install postscript - # Copy rpms directly from the xCAT management node and install - mkdir -p /tmp/ofed - rm -f -R /tmp/ofed/* - cd /tmp/ofed - download_dir=`echo $OFED_DIR | cut -d '/' -f3-` - wget -l inf -N -r --waitretry=10 --random-wait --retry-connrefused -t 10 -T 60 -nH --cut-dirs=5 ftp://$SITEMASTER/$download_dir/ 2> /tmp/wget.log - #rpm -Uvh --force libibverbs-devel*.rpm - perl -x mlnxofedinstall --without-32bit --force - rm -Rf /tmp/ofed - fi - - if [ $NODESETSTATE == "genimage" ]; then - # Being called from .postinstall script - # Assume we are on the same machine - #if [[ $OS = sles* ]] || [[ $OS = suse* ]] || [[ -f /etc/SuSE-release ]]; then - # For SLES, assume zypper is available on the system running genimage - mkdir $installroot/tmp/ofed_install - cp -r $OFED_DIR $installroot/tmp/ofed_install/ - chroot $installroot perl -x /tmp/ofed_install/ofed/mlnxofedinstall --without-32bit --force - rm -rf $installroot/tmp/ofed_install - #fi - fi -fi -