-Fix pm/pem typo

-Copy ca cert over


git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1260 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-05-02 19:53:01 +00:00
parent 755293fea9
commit 82fd039e18
2 changed files with 3 additions and 1 deletions

View File

@ -14,3 +14,4 @@ if [ ! -x /usr/sbin/stunnel ]; then #Stop if no stunnel to help the next bit
chmod 700 /root/.xcat
getcredentials.awk xcat_client_cred | grep -v '<'|sed -e 's/&lt;/</' -e 's/&gt;/>/' -e 's/&amp;/&/' -e 's/&quot/"/' -e "s/&apos;/'/" > /root/.xcat/client-cred.pem
chmod 600 /root/.xcat/client-cred.pem
cp _xcat/ca.pem /root/.xcat/ca.pem

View File

@ -11,7 +11,8 @@ if [ ! -x /usr/sbin/stunnel ]; then #Stop if no stunnel to help the next bit
CREDPID=$!
sleep 1
mkdir -p /etc/xcat/cert
getcredentials.awk xcat_server_cred | grep -v '<'|sed -e 's/&lt;/</' -e 's/&gt;/>/' -e 's/&amp;/&/' -e 's/&quot/"/' -e "s/&apos;/'/" > /etc/xcat/cert/server-cred.pm
getcredentials.awk xcat_server_cred | grep -v '<'|sed -e 's/&lt;/</' -e 's/&gt;/>/' -e 's/&amp;/&/' -e 's/&quot/"/' -e "s/&apos;/'/" > /etc/xcat/cert/server-cred.pem
chmod 600 /etc/xcat/cert/*
getcredentials.awk xcat_cfgloc | grep -v '<'|sed -e 's/&lt;/</' -e 's/&gt;/>/' -e 's/&amp;/&/' -e 's/&quot/"/' -e "s/&apos;/'/" > /etc/xcat/cfgloc
chmod 600 /etc/xcat/cfgloc
cp _xcat/ca.pem /etc/xcat/cert/ca.pem