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:
Kyle Evans 2020-09-17 20:35:45 +00:00
parent 27f21fadda
commit 9ed054096d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=365852

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