freebsd-update: rehash certs
With the inclusion of caroot bits, we'll need to also rehash on update as we do in mergemaster/etcupdate. If certctl's installed on the system, just unconditionally rehash. This isn't an expensive operation, and we can refine it to compare INDEX-{OLD,NEW} later if we really want to. Reviewed by: emaste, allanjude MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D21805
This commit is contained in:
parent
7d60ab6107
commit
6b0fd688d5
@ -2876,7 +2876,7 @@ install_delete () {
|
||||
rm newfiles killfiles
|
||||
}
|
||||
|
||||
# Install new files, delete old files, and update linker.hints
|
||||
# Install new files, delete old files, and update generated files
|
||||
install_files () {
|
||||
# If we haven't already dealt with the kernel, deal with it.
|
||||
if ! [ -f $1/kerneldone ]; then
|
||||
@ -2944,6 +2944,11 @@ Kernel updates have been installed. Please reboot and run
|
||||
install_from_index INDEX-NEW || return 1
|
||||
install_delete INDEX-OLD INDEX-NEW || return 1
|
||||
|
||||
# Rehash certs if we actually have certctl installed.
|
||||
if which certctl>/dev/null; then
|
||||
env DESTDIR=${BASEDIR} certctl rehash
|
||||
fi
|
||||
|
||||
# Rebuild generated pwd files.
|
||||
if [ ${BASEDIR}/etc/master.passwd -nt ${BASEDIR}/etc/spwd.db ] ||
|
||||
[ ${BASEDIR}/etc/master.passwd -nt ${BASEDIR}/etc/pwd.db ] ||
|
||||
|
Loading…
Reference in New Issue
Block a user