-Change iscsi semantics to be group membership agnostic, now nodetype.profile=iscsi is sufficient.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@854 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-03-20 17:26:54 +00:00
parent 64a797479a
commit 51d8830fb2
7 changed files with 64 additions and 7 deletions

View File

@ -194,9 +194,6 @@ ALL {
updateflag.awk $MASTER 3002
}
NODERANGE=iscsi {
uploadboot
}
# hardcode networking
#OSVER=sl[34].* or OSVER=centos.* or OSVER=rh.* or OSVER=sles.* or OSVER=suse.* {
# hardnis

View File

@ -172,4 +172,4 @@ openssh-server
%pre
#INCLUDE:../scripts/pre.rh#
%post
#INCLUDE:../scripts/post.rh#
#INCLUDE:../scripts/post.rh.iscsi#

View File

@ -171,4 +171,4 @@ openssh-server
%pre
#INCLUDE:../scripts/pre.rh#
%post
#INCLUDE:../scripts/post.rh#
#INCLUDE:../scripts/post.rh.iscsi#

View File

@ -180,4 +180,4 @@ compat-libstdc++-33
%pre
#INCLUDE:../scripts/pre.rh#
%post
#INCLUDE:../scripts/post.rh#
#INCLUDE:../scripts/post.rh.iscsi#

View File

@ -179,4 +179,4 @@ compat-libstdc++-33
%pre
#INCLUDE:../scripts/pre.rh#
%post
#INCLUDE:../scripts/post.rh#
#INCLUDE:../scripts/post.rh.iscsi#

View File

@ -25,6 +25,7 @@ hostname $HOSTNAME
#
export MASTER_IP="#XCATVAR:XCATMASTER#"
export MASTER_IPS="#XCATVAR:XCATMASTER#"
export MASTER="#XCATVAR:XCATMASTER#"
mkdir -p /xcatpost
cd /xcatpost
RAND=$(perl -e 'print int(rand(50)). "\n"')

View File

@ -0,0 +1,59 @@
#
# Setup hostname
#
echo "post scripts" >/root/post.log
export PRINIC=#TABLE:noderes:THISNODE:primarynic#
if [ -z "$PRINIC" ]
then
export PRINIC=eth0
fi
IP=$(ifconfig $PRINIC | grep inet | awk '{print $2}' | awk -F: '{print $2}')
if [ -z $IP ]
then
dhclient eth0
IP=$(ifconfig $PRINIC | grep inet | awk '{print $2}' | awk -F: '{print $2}')
fi
echo "search #TABLE:site:key=domain:value#" >/etc/resolv.conf
for i in $(echo #TABLE:site:key=nameservers:value# | tr ',' ' ')
do
echo "nameserver $i"
done >>/etc/resolv.conf
export HOSTNAME=$(host $IP 2>/dev/null | awk '{print $5}' | awk -F. '{print $1}')
hostname $HOSTNAME
#
# Run xCAT post install
#
export MASTER_IP="#XCATVAR:XCATMASTER#"
export MASTER_IPS="#XCATVAR:XCATMASTER#"
export MASTER="#XCATVAR:XCATMASTER#"
mkdir -p /xcatpost
cd /xcatpost
RAND=$(perl -e 'print int(rand(50)). "\n"')
sleep $RAND
for i in $(seq 1 20)
do
GOTIT=0
for i in $MASTER_IPS
do
wget --wait=10 --random-wait --waitretry=10 --retry-connrefused -t 0 -T 60 http://$i/install/autoinst/xcatpost.tar.bz2
if [ "$?" = "0" ]
then
GOTIT=1
break
fi
done
if [ "$GOTIT" = "1" ]
then
break
fi
RAND=$(perl -e 'print int(rand(5)). "\n"')
sleep $RAND
done
tar -xvf xcatpost.tar.bz2
/xcatpost/#TABLE:nodelist:THISNODE:node#
export NODE=#TABLE:nodelist:THISNODE:node#
export PATH=/xcatpost:$PATH
uploadboot
cd /
rm -Rf /xcatpost
exit 0