diff options
author | 2019-04-29 22:27:39 +0000 | |
---|---|---|
committer | 2019-04-29 22:27:39 +0000 | |
commit | ef26528f4dd0aa11da47bef78daf999b1a34796f (patch) | |
tree | 8f6085b042b4a0c46d0e0f0fc49c42075cff0889 | |
parent | Add '*' to disklabel(8) editor prompt when in-memory copy of disklabel (diff) | |
download | wireguard-openbsd-ef26528f4dd0aa11da47bef78daf999b1a34796f.tar.xz wireguard-openbsd-ef26528f4dd0aa11da47bef78daf999b1a34796f.zip |
Install upgrade kernel with ln -f, as per kernel build. ok florian@
-rw-r--r-- | usr.sbin/sysupgrade/sysupgrade.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysupgrade/sysupgrade.sh b/usr.sbin/sysupgrade/sysupgrade.sh index 1cec12a1c15..e532d7f94d1 100644 --- a/usr.sbin/sysupgrade/sysupgrade.sh +++ b/usr.sbin/sysupgrade/sysupgrade.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: sysupgrade.sh,v 1.7 2019/04/28 07:21:28 florian Exp $ +# $OpenBSD: sysupgrade.sh,v 1.8 2019/04/29 22:27:39 ian Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015 Robert Peichaer <rpe@openbsd.org> @@ -152,7 +152,7 @@ echo Verifying sets. unpriv signify -qC -p "${SIGNIFY_KEY}" -x SHA256.sig ${SETS} cp bsd.rd /nbsd.upgrade -ln /nbsd.upgrade /bsd.upgrade +ln -f /nbsd.upgrade /bsd.upgrade rm /nbsd.upgrade echo Upgrading. |