2008-05-02 19:39:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
#egan@us.ibm.com
|
|
|
|
#(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
|
|
|
|
logger -t xcat "xcatserver call without -d, doing nothing."
|
|
|
|
#echo "xcatserver call without -d, doing nothing."
|
|
|
|
#echo $1
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
if [ $1 != "-d" ]; then
|
|
|
|
logger -t xcat "xcatserver call without -d, doing nothing."
|
|
|
|
#echo "xcatserver call without -d, doing nothing."
|
|
|
|
#echo $1
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
logger -t xcat "xcatserver call with -d. getting credentials and cfgloc "
|
|
|
|
#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
|
2010-04-06 08:17:04 +00:00
|
|
|
logger -t xcat "$0: /usr/bin/openssl is not executable"
|
2009-06-25 19:18:22 +00:00
|
|
|
exit 0
|
2009-04-08 14:44:16 +00:00
|
|
|
fi
|
2009-09-01 18:39:07 +00:00
|
|
|
USEOPENSSLFORXCAT=1
|
|
|
|
export USEOPENSSLFORXCAT
|
2008-05-02 19:39:55 +00:00
|
|
|
allowcred.awk &
|
|
|
|
CREDPID=$!
|
|
|
|
sleep 1
|
|
|
|
mkdir -p /etc/xcat/cert
|
2008-05-02 19:53:01 +00:00
|
|
|
getcredentials.awk xcat_server_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cert/server-cred.pem
|
2008-05-02 19:39:55 +00:00
|
|
|
chmod 600 /etc/xcat/cert/*
|
|
|
|
getcredentials.awk xcat_cfgloc | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cfgloc
|
2010-09-29 13:43:06 +00:00
|
|
|
# if not DB2
|
|
|
|
grep "DB2" /etc/xcat/cfgloc 2>&1 1> /dev/null
|
2010-12-14 13:05:51 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2010-09-29 13:43:06 +00:00
|
|
|
sed s/host=[^\|]*/host=$MASTER/ /etc/xcat/cfgloc > /etc/xcat/cfgloc.new
|
|
|
|
mv /etc/xcat/cfgloc.new /etc/xcat/cfgloc
|
2010-12-14 13:05:51 +00:00
|
|
|
else
|
2012-03-01 17:36:04 +00:00
|
|
|
if [ -n "$UPDATENODE" ] && [ $UPDATENODE -eq 1 ]; then
|
|
|
|
cp /etc/xcat/cfgloc /etc/xcat/cfgloc.db2
|
|
|
|
else
|
2010-12-14 13:05:51 +00:00
|
|
|
mv /etc/xcat/cfgloc /etc/xcat/cfgloc.db2
|
2012-03-01 17:36:04 +00:00
|
|
|
fi
|
2010-09-29 13:43:06 +00:00
|
|
|
fi
|
2010-12-19 12:05:06 +00:00
|
|
|
chmod 600 /etc/xcat/cfgloc*
|
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
|
2008-05-02 20:34:40 +00:00
|
|
|
kill -9 $CREDPID
|