2014-11-19 14:42:19 +00:00
|
|
|
#!/bin/bash
|
2008-05-02 19:39:55 +00:00
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
#(C)IBM Corp
|
2011-12-07 17:40:24 +00:00
|
|
|
# This scripts transfers the cfgloc files and the xCAT credentials from
|
|
|
|
# the Management Node to the Service Node on Linux.
|
|
|
|
# It only does something, if called with the -d flag.
|
|
|
|
# The -d flag was implemented when the call to the routine was moved
|
|
|
|
# from the postscript table into the servicenode postscript.
|
2008-05-02 19:39:55 +00:00
|
|
|
#
|
2011-12-07 17:40:24 +00:00
|
|
|
if [ ! $1 ]; then
|
2012-05-15 03:12:41 +00:00
|
|
|
logger -t xcat -p local4.err "xcatserver call without -d, doing nothing."
|
2011-12-07 17:40:24 +00:00
|
|
|
#echo "xcatserver call without -d, doing nothing."
|
|
|
|
#echo $1
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
if [ $1 != "-d" ]; then
|
2012-05-15 03:12:41 +00:00
|
|
|
logger -t xcat -p local4.err "xcatserver call without -d, doing nothing."
|
2011-12-07 17:40:24 +00:00
|
|
|
#echo "xcatserver call without -d, doing nothing."
|
|
|
|
#echo $1
|
|
|
|
exit 0
|
|
|
|
fi
|
2012-05-15 03:12:41 +00:00
|
|
|
logger -t xcat -p local4.info "xcatserver call with -d. getting credentials and cfgloc "
|
2011-12-07 17:40:24 +00:00
|
|
|
#echo "xcatserver call with -d, getting credentials and cfgloc."
|
|
|
|
#echo $1
|
2008-05-02 19:39:55 +00:00
|
|
|
|
2009-06-25 19:18:22 +00:00
|
|
|
if [ ! -x /usr/bin/openssl ]; then
|
2012-05-15 03:12:41 +00:00
|
|
|
logger -t xcat -p local4.err "$0: /usr/bin/openssl is not executable"
|
2012-11-25 04:44:00 +00:00
|
|
|
exit -1
|
2009-04-08 14:44:16 +00:00
|
|
|
fi
|
2009-09-01 18:39:07 +00:00
|
|
|
USEOPENSSLFORXCAT=1
|
|
|
|
export USEOPENSSLFORXCAT
|
2013-10-17 15:46:12 +00:00
|
|
|
# are we using xcat flow control
|
|
|
|
useflowcontrol=0
|
2013-10-18 11:24:00 +00:00
|
|
|
if [ "$USEFLOWCONTROL" = "YES" ] || [ "$USEFLOWCONTROL" = "yes" ] || [ "$USEFLOWCONTROL" = "1" ]; then
|
2013-10-17 15:46:12 +00:00
|
|
|
useflowcontrol=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
xcatpost="xcatpost"
|
|
|
|
master=$MASTER
|
|
|
|
|
|
|
|
allowcred.awk &
|
|
|
|
CREDPID=$!
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
# setup and get the xCAT SSL credentials down to the service node
|
|
|
|
# create SSL certificate directory and then get them
|
|
|
|
mkdir -p /etc/xcat/cert
|
|
|
|
if [ $useflowcontrol = "1" ]; then
|
|
|
|
#first contact daemon xcatflowrequest <server> 3001
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: sending xcatflowrequest $master 3001"
|
|
|
|
/$xcatpost/xcatflowrequest $master 3001
|
|
|
|
rc=$?
|
|
|
|
logger -t xCAT -p local4.info "xcatserver:xcatflowrequest received response return=$rc"
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: error from xcatflowrequest, will not use flow control"
|
|
|
|
useflowcontrol=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
fi
|
|
|
|
getcredentials.awk xcat_server_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cert/server-cred.pem
|
|
|
|
|
|
|
|
#check the message is an error or not
|
|
|
|
grep -E '<error>' /etc/xcat/cert/server-cred.pem
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
#the message received is the data
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: getting server-cred.pem"
|
|
|
|
MAX_RETRIES=10
|
|
|
|
RETRY=0
|
|
|
|
MYCONT=`cat /etc/xcat/cert/server-cred.pem`
|
|
|
|
|
|
|
|
while [ -z "$MYCONT" ]; do
|
|
|
|
# not using flow control , need to sleep
|
|
|
|
if [ $useflowcontrol = "0" ]; then
|
|
|
|
let SLI=$RANDOM%10
|
|
|
|
let SLI=SLI+10
|
|
|
|
sleep $SLI
|
|
|
|
fi
|
|
|
|
|
|
|
|
RETRY=$(($RETRY+1))
|
|
|
|
if [ $RETRY -eq $MAX_RETRIES ]
|
|
|
|
then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
if [ $useflowcontrol = "1" ]; then
|
|
|
|
#first contact daemon xcatflowrequest <server> 3001
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: sending xcatflowrequest $master 3001"
|
|
|
|
/$xcatpost/xcatflowrequest $master 3001
|
|
|
|
rc=$?
|
|
|
|
logger -t xCAT -p local4.info "xcatserver:xcatflowrequest return=$rc"
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: error from xcatflowrequest, will not use flow control"
|
|
|
|
useflowcontrol=0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
getcredentials.awk xcat_server_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cert/server-cred.pem
|
|
|
|
MYCONT=`cat /etc/xcat/cert/server-cred.pem`
|
|
|
|
done
|
|
|
|
|
2008-05-02 19:39:55 +00:00
|
|
|
chmod 600 /etc/xcat/cert/*
|
2009-05-26 11:07:50 +00:00
|
|
|
# do not assume working directory, use the full path
|
|
|
|
cp /xcatpost/_xcat/ca.pem /etc/xcat/cert/ca.pem
|
2013-10-17 15:46:12 +00:00
|
|
|
else # error from first getcredential call
|
|
|
|
#the message received is an error from credentials.pm, so parse it
|
|
|
|
ERR_MSG=`sed -n 's%.*<error>\(.*\)</error>.*%\1%p' /etc/xcat/cert/server-cred.pem`
|
|
|
|
logger -t xCAT -p local4.err xcatserver: $ERR_MSG
|
|
|
|
rm /etc/xcat/cert/server-cred.pem
|
|
|
|
fi
|
|
|
|
|
|
|
|
# get the xcat cfgloc file
|
|
|
|
|
|
|
|
if [ $useflowcontrol = "1" ]; then
|
|
|
|
#first contact daemon xcatflowrequest <server> 3001
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: sending xcatflowrequest $master 3001"
|
|
|
|
/$xcatpost/xcatflowrequest $master 3001
|
|
|
|
rc=$?
|
|
|
|
logger -t xCAT -p local4.info "xcatserver:xcatflowrequest received response return=$rc"
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: error from xcatflowrequest, will not use flow control"
|
|
|
|
useflowcontrol=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
getcredentials.awk xcat_cfgloc | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cfgloc
|
|
|
|
|
|
|
|
#check the message is an error or not
|
|
|
|
grep -E '<error>' /etc/xcat/cfgloc
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
#the message received is the data
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: getting cfgloc"
|
|
|
|
MAX_RETRIES=10
|
|
|
|
RETRY=0
|
|
|
|
MYCONT=`cat /etc/xcat/cfgloc`
|
|
|
|
|
|
|
|
while [ -z "$MYCONT" ]; do
|
|
|
|
# not using flow control , need to sleep
|
|
|
|
if [ $useflowcontrol = "0" ]; then
|
|
|
|
let SLI=$RANDOM%10
|
|
|
|
let SLI=SLI+10
|
|
|
|
sleep $SLI
|
|
|
|
fi
|
|
|
|
|
|
|
|
RETRY=$(($RETRY+1))
|
|
|
|
if [ $RETRY -eq $MAX_RETRIES ]
|
|
|
|
then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
if [ $useflowcontrol = "1" ]; then
|
|
|
|
#first contact daemon xcatflowrequest <server> 3001
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: sending xcatflowrequest $master 3001"
|
|
|
|
/$xcatpost/xcatflowrequest $master 3001
|
|
|
|
rc=$?
|
|
|
|
logger -t xCAT -p local4.info "xcatserver:xcatflowrequest return=$rc"
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
logger -t xCAT -p local4.info "xcatserver: error from xcatflowrequest, will not use flow control"
|
|
|
|
useflowcontrol=0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
getcredentials.awk xcat_cfgloc | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cfgloc
|
|
|
|
MYCONT=`cat /etc/xcat/cfgloc`
|
|
|
|
done
|
|
|
|
# if we successfully got cfgloc
|
|
|
|
if [ -f /etc/xcat/cfgloc ]; then
|
|
|
|
# if not DB2
|
|
|
|
grep "DB2" /etc/xcat/cfgloc 2>&1 1> /dev/null
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
sed s/host=[^\|]*/host=$MASTER/ /etc/xcat/cfgloc > /etc/xcat/cfgloc.new
|
|
|
|
mv /etc/xcat/cfgloc.new /etc/xcat/cfgloc
|
|
|
|
else # DB2 cfgloc has different format
|
|
|
|
if [ -n "$UPDATENODE" ] && [ $UPDATENODE -eq 1 ]; then
|
|
|
|
cp /etc/xcat/cfgloc /etc/xcat/cfgloc.db2
|
|
|
|
else
|
|
|
|
mv /etc/xcat/cfgloc /etc/xcat/cfgloc.db2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
chmod 600 /etc/xcat/cfgloc*
|
|
|
|
fi
|
|
|
|
else # error from first getcredentials call
|
|
|
|
#the message received is an error from credentials.pm, so parse it
|
|
|
|
ERR_MSG=`sed -n 's%.*<error>\(.*\)</error>.*%\1%p' /etc/xcat/cfgloc`
|
|
|
|
logger -t xCAT -p local4.err xcatserver: $ERR_MSG
|
|
|
|
rm /etc/xcat/cfgloc
|
|
|
|
fi
|
|
|
|
|
|
|
|
kill -9 $CREDPID
|