#!/bin/ksh
-# $OpenBSD: install.sub,v 1.1262 2024/03/15 16:29:32 kn Exp $
+# $OpenBSD: install.sub,v 1.1263 2024/03/15 17:31:21 kn Exp $
#
# Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback
# Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org>
# Perform final steps common to both an install and an upgrade.
finish_up
+ if [ -f /tmp/wdpid ]; then
+ kill -KILL "$(</tmp/wdpid)" 2>/dev/null
+ # do not bother waiting
+ rm -f /tmp/wdpid
+ fi
}
check_unattendedupgrade() {
set +m
}
-# Stop the background timer.
-stop_watchdog() {
- if [ -f /tmp/wdpid ]; then
- kill -KILL "$(</tmp/wdpid)" 2>/dev/null
- # do not bother waiting
- rm -f /tmp/wdpid
- fi
-}
-
# return if we only want internal functions
[[ -n $FUNCS_ONLY ]] && return
upgrade) do_upgrade;;
esac
-$UU && stop_watchdog
-
# In case of autoinstall, this is a second process of install.sub.
# Exiting here returns to the original process, which handles the
# automatic reboot in do_autoinstall().