2012-12-07 15:59:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
if [ -z "$XCATDEST" ]; then
|
|
|
|
XCATDEST=$1
|
|
|
|
fi
|
|
|
|
echo "<xcatrequest>
|
|
|
|
<command>nextdestiny</command>
|
|
|
|
<callback_port>300</callback_port>
|
|
|
|
</xcatrequest>" > /tmp/destreq.xml
|
|
|
|
if [ -f /tmp/destiny.xml ]; then rm /tmp/destiny.xml; fi
|
|
|
|
while [ ! -f /tmp/destiny.xml ] || grep error /tmp/destiny.xml; do
|
|
|
|
if [ -f /tmp/destiny.xml ]; then
|
|
|
|
timer=60
|
|
|
|
while [ $timer -gt 0 ]; do
|
|
|
|
echo -en "Retrying in $timer seconds \r" >&2
|
|
|
|
sleep 1
|
|
|
|
timer=$(($timer-1));
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
echo " " >&2;
|
|
|
|
if [ -f /etc/xcat/cert.pem -a -f /etc/xcat/certkey.pem ]; then #use client cert if available
|
|
|
|
cat /tmp/destreq.xml | openssl s_client -key /etc/xcat/certkey.pem -cert /etc/xcat/cert.pem -connect $XCATDEST -quiet 2> /dev/null > /tmp/destiny.xml
|
|
|
|
else
|
|
|
|
cat /tmp/destreq.xml | openssl s_client -connect $XCATDEST -quiet 2> /dev/null > /tmp/destiny.xml
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
rm /tmp/destreq.xml
|
2013-04-23 08:19:42 +00:00
|
|
|
DESTINY=`grep '<destiny>' /tmp/destiny.xml | awk -F'>' '{print $2}'|awk -F'<' '{print $1}'`
|
2012-12-07 15:59:34 +00:00
|
|
|
rm /tmp/destiny.xml
|
|
|
|
echo $DESTINY
|