ab488fb9d3
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10662 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
39 lines
1.3 KiB
Bash
Executable File
39 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
#egan@us.ibm.com
|
|
#(C)IBM Corp
|
|
#
|
|
|
|
if [ ! -x /usr/bin/openssl ]; then #Unless we have openssl stup
|
|
logger -t xcat "$0: /usr/bin/openssl is not executable"
|
|
exit 0
|
|
fi
|
|
USEOPENSSLFORXCAT=1 #Declare 2.3 style SSL
|
|
export USEOPENSSLFORXCAT
|
|
allowcred.awk &
|
|
CREDPID=$!
|
|
sleep 1
|
|
mkdir -p /root/.xcat
|
|
chmod 700 /root/.xcat
|
|
getcredentials.awk xcat_client_cred > /tmp/xcat_client_cred
|
|
grep -E '<error>' /tmp/xcat_client_cred
|
|
if [ $? -ne 0 ]; then
|
|
cat /tmp/xcat_client_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /root/.xcat/client-cred.pem
|
|
CONT=`cat /root/.xcat/client-cred.pem`
|
|
while [ -z "$CONT" ]; do
|
|
SLI=$(awk 'BEGIN{srand(); printf("%d\n",rand()*10)}')
|
|
SLI=$((10 + $SLI))
|
|
sleep $SLI
|
|
getcredentials.awk xcat_client_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /root/.xcat/client-cred.pem
|
|
CONT=`cat /root/.xcat/client-cred.pem`
|
|
done
|
|
else
|
|
ERR_MSG=`sed -n 's%.*<error>\(.*\)</error>.*%\1%p' /tmp/xcat_client_cred`
|
|
logger -t xCAT xcat_client_cred Error: $ERR_MSG
|
|
fi
|
|
rm /tmp/xcat_client_cred
|
|
|
|
chmod 600 /root/.xcat/client-cred.pem
|
|
cp _xcat/ca.pem /root/.xcat/ca.pem
|
|
kill -9 $CREDPID
|