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
|
|
|
|
#
|
|
|
|
|
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
|
|
|
|
mv /etc/xcat/cfgloc /etc/xcat/cfgloc.db2
|
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
|