Changeset 94

Show
Ignore:
Timestamp:
01/29/08 16:02:16 (16 years ago)
Author:
broder
Message:

One more - macathena-ssl-certificates apparently didn't fail cleanly if the cert was already in the keychain.

This may have been a problem limited to 10.4 only, but I added the same fix for both 10.5 and 10.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/fink/main/finkinfo/macathena-ssl-certificates.info

    r93 r94  
    11Package: macathena-ssl-certificates 
    22Version: 88 
    3 Revision: 3 
     3Revision: 4 
    44Source: http://macathena.mit.edu/dist/ssl-certificates-svn%v.tar.gz 
    55Maintainer: SIPB MacAthena Project <sipb-macathena@mit.edu> 
     
    2525        if [ "$(/usr/bin/sw_vers -productVersion | cut -d. -f1-2)" == "10.5" ] 
    2626        then 
    27                 security add-trusted-cert -d -k /Library/Keychains/System.keychain %p/share/%n/mitCA.pem 
     27                security add-trusted-cert -d -k /Library/Keychains/System.keychain %p/share/%n/mitCA.pem || : 
    2828        else 
    29                 security add-cert -k /System/Library/Keychains/X509Anchors %p/share/%n/mitCA.der 
     29                security add-cert -k /System/Library/Keychains/X509Anchors %p/share/%n/mitCA.der || : 
    3030        fi 
    3131<<