Revert r361257: bsdinstall: do a certctl rehash upon installation [...]

As of r365829, any given base distribution set will now include the /etc/ssl
symlinks that this rehash would've otherwise installed. This extra step is
no longer required.

MFC after:	1 week
X-MFC-With:	r365837
This commit is contained in:
kevans 2020-09-17 20:35:45 +00:00
parent 4d25d27b2b
commit a51ac62703

View File

@ -55,9 +55,6 @@ cp $BSDINSTALL_TMPBOOT/* $BSDINSTALL_CHROOT/boot
# Set up other things from installed config
chroot $BSDINSTALL_CHROOT /usr/bin/newaliases > /dev/null 2>&1
if [ -x $BSDINSTALL_CHROOT/usr/sbin/certctl ]; then
chroot $BSDINSTALL_CHROOT /usr/sbin/certctl rehash
fi
exit 0