From: espie Date: Sat, 25 Nov 2023 10:29:23 +0000 (+0000) Subject: reinstate checking the keytype, which I unwittingly dropped a long time ago. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=57050d8c82febe21c61f0e78336f54f95465c332;p=openbsd reinstate checking the keytype, which I unwittingly dropped a long time ago. --- diff --git a/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm b/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm index f54409b69af..67d5ddf9d09 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackageRepository.pm,v 1.176 2023/06/13 09:07:17 espie Exp $ +# $OpenBSD: PackageRepository.pm,v 1.177 2023/11/25 10:29:23 espie Exp $ # # Copyright (c) 2003-2010 Marc Espie # @@ -420,12 +420,22 @@ sub uncompress($self, $object, @p) return $fh; } +sub keytype($self) +{ + if ($self->{state}->defines("FW_UPDATE")) { + return "fw"; + } else { + return "pkg"; + } +} + sub signify_pipe($self, $object, @p) { CORE::open STDERR, ">>", $object->{errors}; exec {OpenBSD::Paths->signify} ("signify", "-zV", + "-t", $self->keytype, @p) or $self->{state}->fatal("Can't run #1: #2", OpenBSD::Paths->signify, $!);