Exit successfully at the end of fw_update
authorafresh1 <afresh1@openbsd.org>
Thu, 28 Sep 2023 00:52:16 +0000 (00:52 +0000)
committerafresh1 <afresh1@openbsd.org>
Thu, 28 Sep 2023 00:52:16 +0000 (00:52 +0000)
Otherwise the exit status depends on whether we kept any firmware.

Reported by Brian Conway <bconway () rcesoftware ! com>
The clean solution suggested by guenther@

usr.sbin/fw_update/fw_update.sh

index 0a773cd..dbfeca8 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/ksh
-#      $OpenBSD: fw_update.sh,v 1.48 2023/09/28 00:45:22 afresh1 Exp $
+#      $OpenBSD: fw_update.sh,v 1.49 2023/09/28 00:52:16 afresh1 Exp $
 #
 # Copyright (c) 2021,2023 Andrew Hewus Fresh <afresh1@openbsd.org>
 #
@@ -763,3 +763,5 @@ done
 
 [ "$unregister" ] && status "; unregister ${unregister:#,}"
 [ "$kept"       ] && status "; keep ${kept:#,}"
+
+exit 0