In article <056501bdcf85$a93e8a10$c3e33dce@schooner.syncinc.com> you wrote:
> Could you elaborate, a bit, on the hash sym-links, please?
In mod_ssl we use the following Makefile which keeps
the hash-symlinks up to date:
| ##
| ## Makefile to keep the SSLCACertificatePath up to date
| ## Copyright (c) 1998 Ralf S. Engelschall, All Rights Reserved.
| ##
|
| update:
| -@rm -f *.0
| -@for file in *.pem; do \
| if [ ".`grep 'HAS TO BE REPLACED' $$file`" != . ]; then \
| echo "$$file [skipped - is still a dummy file]"; \
| else \
| hash="`ssleay x509 -noout -hash <$$file`"; \
| echo "$$file -> $$hash.0"; \
| rm -f $$hash.0; \
| ln -s $$file $$hash.0; \
| fi \
| done
Greetings,
Ralf S. Engelschall
rse@engelschall.com
www.engelschall.com