2008-05-01 20:52:16 +00:00
|
|
|
#!/bin/sh
|
2008-04-14 12:20:34 +00:00
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
#####################################################
|
|
|
|
#
|
|
|
|
# Generic xCAT post script for diskless nodes
|
2009-07-29 21:25:59 +00:00
|
|
|
# This script is called in the following different palces:
|
|
|
|
# updatenode -P ... --> xcatdsklspost 1 ...
|
|
|
|
# updatenode -S --> xcatdsklspost 2 otherpkgs
|
|
|
|
# moncfg rmcmon --> xcatdsklspost 3 configrmcnodes
|
|
|
|
# node deployment --> xcatdsklspost
|
2008-04-14 12:20:34 +00:00
|
|
|
#
|
|
|
|
#####################################################
|
2008-05-01 20:52:16 +00:00
|
|
|
if [ ! `uname` == Linux ]; then
|
|
|
|
MYDIR=`dirname $0`
|
|
|
|
exec $MYDIR/xcatdsklspost.aix
|
|
|
|
exit
|
|
|
|
fi
|
2008-05-13 23:33:16 +00:00
|
|
|
let SLI=$RANDOM%10
|
|
|
|
sleep $SLI
|
2008-05-01 20:52:16 +00:00
|
|
|
|
2009-02-16 07:22:21 +00:00
|
|
|
#setup $OSVER ,for SLES11
|
|
|
|
if [ -e '/etc/SuSE-release' ]; then
|
|
|
|
OSVER=`grep -h VERSION /etc/SuSE-release |awk '{print $3}'`
|
|
|
|
fi
|
|
|
|
|
2009-09-02 07:08:23 +00:00
|
|
|
SIP=`grep -h dhcp-server-identifier /var/lib/dhclient/dhclient*.leases 2> /dev/null|tail -n 1|awk '{print $3}'|sed -e 's/;//'`
|
2008-05-27 18:21:23 +00:00
|
|
|
if [ -z "$SIP" ]; then
|
2009-09-02 07:08:23 +00:00
|
|
|
SIP=`grep -h DHCPSID /var/lib/dhcpcd/*.info 2> /dev/null|awk -F= '{print $2}'|tail -n 1`
|
2008-05-27 18:21:23 +00:00
|
|
|
fi
|
|
|
|
|
2008-09-08 18:54:30 +00:00
|
|
|
#echo "SIP=$SIP"
|
2009-02-16 12:12:21 +00:00
|
|
|
if [ "$OSVER" = "11" ]; then
|
2009-02-16 07:22:21 +00:00
|
|
|
SIP=`echo $SIP |awk -F\' '{print $2}'` #trim '
|
|
|
|
fi
|
|
|
|
|
2009-09-09 20:36:53 +00:00
|
|
|
#open the xcatinfo file to look for the master if it is not set
|
|
|
|
frominfofile=0
|
|
|
|
if [ -z $SIP ]; then
|
|
|
|
if [ -f /opt/xcat/xcatinfo ]; then
|
|
|
|
SIP=`grep 'XCATSERVER' /opt/xcat/xcatinfo |cut -d= -f2`
|
|
|
|
frominfofile=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
#no hope, now let's get out here.
|
|
|
|
if [ -z $SIP ]; then
|
|
|
|
hn=`hostname`
|
|
|
|
echo "Cannot find the xCAT server for node $hn"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
#save the SIP into the xcatinfo file
|
|
|
|
if [ $frominfofile -eq 0 ]; then
|
|
|
|
if [ ! -f /opt/xcat/xcatinfo ]; then
|
|
|
|
mkdir -p /opt/xcat
|
|
|
|
touch /opt/xcat/xcatinfo
|
|
|
|
fi
|
|
|
|
grep 'XCATSERVER' /opt/xcat/xcatinfo 2>&1 > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
sed -i "s/XCATSERVER=.*/XCATSERVER=$SIP/" /opt/xcat/xcatinfo
|
|
|
|
else
|
|
|
|
echo "XCATSERVER=$SIP" >> /opt/xcat/xcatinfo
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-05-09 17:20:04 +00:00
|
|
|
if grep 'rw /rw tmpfs ' /proc/mounts >& /dev/null; then
|
|
|
|
touch /var/lock/subsys/xcatmounts
|
|
|
|
echo '#!/bin/bash' > /etc/rc6.d/K10xcatmounts
|
|
|
|
echo umount -l /ro >> /etc/rc6.d/K10xcatmounts
|
|
|
|
echo umount -l /rw >> /etc/rc6.d/K10xcatmounts
|
|
|
|
chmod 755 /etc/rc6.d/K10xcatmounts
|
|
|
|
ln -sf /etc/rc6.d/K10xcatmounts /etc/rc0.d/K10xcatmounts
|
|
|
|
fi
|
|
|
|
|
2008-05-01 20:52:16 +00:00
|
|
|
|
2009-06-25 19:18:22 +00:00
|
|
|
if [ -x /usr/bin/openssl ]; then
|
2009-04-08 14:44:16 +00:00
|
|
|
XCATSERVER="$SIP:3001"
|
|
|
|
export XCATSERVER
|
2009-09-01 18:39:07 +00:00
|
|
|
USEOPENSSLFORXCAT=1 #Though this is the only method going forward, flag to allow backward compatibility with 2.2 generated netboot images
|
|
|
|
export USEOPENSSLFORXCAT
|
2009-04-08 14:44:16 +00:00
|
|
|
fi
|
2008-05-01 20:52:16 +00:00
|
|
|
mkdir -p /xcatpost;
|
2008-09-08 18:54:30 +00:00
|
|
|
mkdir -p /tmp/postage
|
|
|
|
rm -R -f /xcatpost/*
|
|
|
|
rm -R -f /tmp/postage/*
|
|
|
|
|
2009-07-23 20:56:57 +00:00
|
|
|
#here we get all the postscripts. Please do not change this behaviour because some scripts depend on others
|
2008-05-01 20:52:16 +00:00
|
|
|
cd /tmp/postage
|
2008-05-13 16:58:11 +00:00
|
|
|
#wget -l inf -N -r --waitretry=10 --random-wait --retry-connrefused -t 0 -T 60 ftp://$SIP/install/postscripts 2> /tmp/wget.log
|
|
|
|
wget -l inf -N -r --waitretry=10 --random-wait --retry-connrefused -t 0 -T 60 ftp://$SIP/postscripts 2> /tmp/wget.log
|
|
|
|
#mv $SIP/install/postscripts/* /xcatpost;
|
|
|
|
mv $SIP/postscripts/* /xcatpost;
|
2008-05-01 20:52:16 +00:00
|
|
|
rm -rf $SIP
|
|
|
|
cd /xcatpost;
|
|
|
|
PATH=/xcatpost:$PATH
|
|
|
|
export PATH
|
2008-09-08 18:54:30 +00:00
|
|
|
chmod +x /xcatpost/*;
|
2009-08-03 11:41:16 +00:00
|
|
|
#echo "PATH=$PATH"
|
2008-05-01 20:52:16 +00:00
|
|
|
/xcatpost/getpostscript.awk | sed -e 's/<[^>]*>//g'|egrep -v '^ *$'|sed -e 's/^ *//' > /tmp/mypostscript;
|
2009-06-19 18:44:02 +00:00
|
|
|
MYCONT=`grep MASTER /tmp/mypostscript`
|
2008-09-08 18:54:30 +00:00
|
|
|
#echo "MYCONT=$MYCONT"
|
2009-09-16 08:28:04 +00:00
|
|
|
#if getpostscript.awk fails, the postscript will fall into infinit loop
|
|
|
|
#so one retry_number is added to avoid sunc a condition
|
|
|
|
MAX_RETRIES=10
|
|
|
|
RETRY=0
|
2008-05-13 23:33:16 +00:00
|
|
|
while [ -z "$MYCONT" ]; do
|
2009-09-16 08:28:04 +00:00
|
|
|
RETRY=$(($RETRY+1))
|
|
|
|
if [ $RETRY -eq $MAX_RETRIES ]
|
|
|
|
then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
|
2008-05-13 23:33:16 +00:00
|
|
|
let SLI=$RANDOM%10
|
|
|
|
let SLI=10+$SLI
|
|
|
|
sleep $SLI
|
|
|
|
/xcatpost/getpostscript.awk | sed -e 's/<[^>]*>//g'|egrep -v '^ *$'|sed -e 's/^ *//' > /tmp/mypostscript;
|
2009-06-19 18:44:02 +00:00
|
|
|
MYCONT=`grep MASTER /tmp/mypostscript`
|
2008-09-08 18:54:30 +00:00
|
|
|
# echo "MYCONT=$MYCONT"
|
2008-05-13 23:33:16 +00:00
|
|
|
done
|
2009-06-04 15:33:44 +00:00
|
|
|
|
2009-07-29 21:25:59 +00:00
|
|
|
# when called by the updatenode command
|
|
|
|
#modify the UPDATENODE flag to 1
|
2009-06-04 15:33:44 +00:00
|
|
|
if [ $# -gt 0 ]; then
|
|
|
|
TMP=`sed -e 's/UPDATENODE=0/UPDATENODE=1/g' /tmp/mypostscript`;
|
|
|
|
echo "$TMP" > /tmp/mypostscript;
|
|
|
|
fi
|
|
|
|
|
2008-09-25 03:04:56 +00:00
|
|
|
if [ $# -gt 1 ]; then
|
|
|
|
POSTS=$2
|
2008-09-08 18:54:30 +00:00
|
|
|
#remove all the postscripts
|
|
|
|
TMP=`sed "/postscripts-start-here/,/postscripts-end-here/ d" /tmp/mypostscript`
|
|
|
|
echo "$TMP" > /tmp/mypostscript
|
2009-09-18 11:28:34 +00:00
|
|
|
echo "# postscripts-start-here\n" >> /tmp/mypostscript
|
2008-09-08 18:54:30 +00:00
|
|
|
#add requested postscripts in
|
|
|
|
echo "$POSTS" | tr "," "\n" >> /tmp/mypostscript
|
2009-09-18 11:28:34 +00:00
|
|
|
echo "# postscripts-end-here\n" >> /tmp/mypostscript
|
2008-09-08 18:54:30 +00:00
|
|
|
fi
|
2009-07-23 20:56:57 +00:00
|
|
|
|
|
|
|
#ADDSITEYUM is set by post.rh and post.rh.iscsi for full installtion
|
|
|
|
if [[ "$ADDSITEYUM" = "1" ]]; then
|
|
|
|
TMP=`sed "/postscripts-start-here/ a addsiteyum" /tmp/mypostscript`
|
|
|
|
echo "$TMP" > /tmp/mypostscript
|
|
|
|
fi
|
|
|
|
|
2008-09-08 18:54:30 +00:00
|
|
|
#MYCONT=`cat /tmp/mypostscript`
|
|
|
|
#echo "$MYCONT"
|
|
|
|
|
2009-09-18 11:28:34 +00:00
|
|
|
# use the run_ps subroutine to run the postscripts
|
|
|
|
TMP=`sed "/postscripts-start-here/,/postscripts-end-here/ s/\(.*\)/run_ps \1/;s/run_ps\s*#/#/;s/run_ps\s*$//" /tmp/mypostscript`
|
|
|
|
echo "
|
|
|
|
# subroutine used to run postscripts
|
|
|
|
run_ps () {
|
|
|
|
if [[ -f \$1 ]]; then
|
|
|
|
echo \"Running postscript: \$1\"
|
|
|
|
OUTPUT=\`\$1 2>&1\`
|
|
|
|
if [[ -n \$OUTPUT ]]; then
|
|
|
|
echo \"\$OUTPUT\"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo \"Postscript \$1 does NOT exist.\"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
# subroutine end
|
|
|
|
|
|
|
|
" > /tmp/mypostscript
|
|
|
|
echo "$TMP" >> /tmp/mypostscript
|
|
|
|
|
|
|
|
|
2008-09-26 23:07:45 +00:00
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
#notify the server that we are done with netbooting
|
2009-03-24 19:44:23 +00:00
|
|
|
CNS=`grep NODESTATUS= /tmp/mypostscript |awk -F = '{print $2}'`
|
2009-03-25 03:25:59 +00:00
|
|
|
if [ -z "$CNS" ] || [ "$CNS" != "'0'" -a "$CNS" != "'N'" -a "$CNS" != "'n'" ]; then
|
2009-03-24 03:12:03 +00:00
|
|
|
echo "updateflag.awk \$MASTER 3002 \"installstatus booted\"" >> /tmp/mypostscript
|
|
|
|
fi
|
2008-09-26 23:07:45 +00:00
|
|
|
fi
|
|
|
|
|
2009-02-19 08:45:16 +00:00
|
|
|
DHCP_TMP=`sed 's/\(DHCPINTERFACES=\)\(.*\)$/\1"\2"/' /tmp/mypostscript`
|
|
|
|
echo "$DHCP_TMP" > /tmp/mypostscript
|
2009-02-16 07:22:21 +00:00
|
|
|
|
2008-05-01 20:52:16 +00:00
|
|
|
chmod +x /tmp/mypostscript
|
|
|
|
if [ -x /tmp/mypostscript ];then
|
|
|
|
/tmp/mypostscript
|
|
|
|
fi
|
2009-07-23 20:56:57 +00:00
|
|
|
#rm -f /tmp/mypostscript
|
2008-09-25 03:04:56 +00:00
|
|
|
|
2008-11-09 03:20:21 +00:00
|
|
|
#tell user it is done when this is called by updatenode command
|
|
|
|
if [ $# -gt 0 ]; then
|
2009-08-03 11:41:16 +00:00
|
|
|
echo "returned from postscript"
|
2008-11-09 03:20:21 +00:00
|
|
|
fi
|
2008-09-08 18:54:30 +00:00
|
|
|
|