From 2feca2e207cbf846d079556fee7df6fa2a1840d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Tue, 24 May 2022 08:50:25 +0200 Subject: [PATCH] manman-sync: make signing error critical --- package/gluon-manman-sync/luasrc/usr/bin/manman-sync | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/package/gluon-manman-sync/luasrc/usr/bin/manman-sync b/package/gluon-manman-sync/luasrc/usr/bin/manman-sync index b1dac3f4..3f139007 100755 --- a/package/gluon-manman-sync/luasrc/usr/bin/manman-sync +++ b/package/gluon-manman-sync/luasrc/usr/bin/manman-sync @@ -163,11 +163,7 @@ local function fetch_signed_json(remote, url) local data = ts .. '@' .. result if not ecdsa.verify(data, sig, mankey) then print('E: signature invalid or not signed with expected key') - - print('C: manman-sync is currently not properly signed') - print('C: this error will be actually considered once manapi has been fixed') - - -- return 1 + return 1 end local obj = json.parse(result)