Add server and client xcat setup scripts
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1257 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
be24ac6b23
commit
8ad1e5c372
16
xCAT/postscripts/xcatclient
Normal file
16
xCAT/postscripts/xcatclient
Normal file
@ -0,0 +1,16 @@
|
||||
#!/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 /root/.xcat
|
||||
chmod 700 /root/.xcat
|
||||
getcredentials.awk xcat_client_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /root/.xcat/client-cred.pem
|
||||
chmod 600 /root/.xcat/client-cred.pem
|
17
xCAT/postscripts/xcatserver
Normal file
17
xCAT/postscripts/xcatserver
Normal file
@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
getcredentials.awk xcat_server_cred | grep -v '<'|sed -e 's/</</' -e 's/>/>/' -e 's/&/&/' -e 's/"/"/' -e "s/'/'/" > /etc/xcat/cert/server-cred.pm
|
||||
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
|
Loading…
Reference in New Issue
Block a user