Skip to content
Snippets Groups Projects
Verified Commit ff41bca5 authored by Petr Špaček's avatar Petr Špaček
Browse files

trust_anchors: do not accept add_file() for managed TA without ta_update module

Previous version would add the TA and then print error message, which is
not expected.
parent 8451e991
No related branches found
No related tags found
1 merge request!788daemon/lua/trust_anchors: don't crash when dealing with unknown algorhitm
......@@ -318,6 +318,10 @@ end
local function add_file(path, unmanaged)
local managed = not unmanaged
if managed then
if not ta_update then
panic('[ ta ] automatic update for TA ' .. owner_str .. ' requested, '
.. 'but required module ta_update is not loaded')
end
if not io.open(path .. '.lock', 'w') then
error("[ ta ] ERROR: write access needed to keyfile dir '"..path.."'")
end
......@@ -370,10 +374,6 @@ local function add_file(path, unmanaged)
-- TODO: if failed and for root, try to rebootstrap?
if managed then
if not ta_update then
panic('[ ta ] automatic update for TA ' .. owner_str .. ' requested, '
.. 'but required plugin ta_update is not loaded')
end
ta_update.start(owner)
end
end
......
deckard @ 839af390
Subproject commit f601f2f7557344a6c8bc436a01f325213d1f23dd
Subproject commit 839af3909d5af7835822f72dd2e3238fb6229edb
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment