Install /etc/ssl/openssl.cnf

Submitted by:	Doug Barton <DougB@gorean.org>
Forgotten by:	kris
This commit is contained in:
Kris Kennaway 2000-05-18 05:21:50 +00:00
parent 3320b1fe44
commit 9c9ad110e5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60677

View File

@ -26,6 +26,10 @@ SSH= ${.CURDIR}/../crypto/openssh/ssh_config \
${.CURDIR}/../crypto/openssh/sshd_config
.endif
.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf
.endif
# -rwxr-xr-x root.wheel, for the new cron root.wheel
BIN2= netstart pccard_ether rc.suspend rc.resume
@ -77,6 +81,10 @@ distribution:
(cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSH} \
${DESTDIR}/etc/ssh )
.endif
.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
(cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSL} \
${DESTDIR}/etc/ssl )
.endif
.if !defined(NO_MAKEDEV)
(cd ${DESTDIR}/dev; sh MAKEDEV all)
.endif