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
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ ! -x /usr/sbin/stunnel ]; then #Stop if no stunnel to help the next bit
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
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
|
|
|
|
chmod 600 /etc/xcat/cfgloc
|
2008-05-02 19:53:01 +00:00
|
|
|
cp _xcat/ca.pem /etc/xcat/cert/ca.pem
|