Skip to content
Snippets Groups Projects
Verified Commit e6f50676 authored by Karel Koci's avatar Karel Koci :metal:
Browse files

medkit: drop test keys from default image

parent 7701400c
Branches
Tags
1 merge request!123Turris OS 5.0 (HBK)
......@@ -42,9 +42,11 @@ for list in os.getenv('LISTS'):gmatch('[^,]+') do
Script('turris-' .. list, base_url .. list .. '.lua', script_options)
end
-- Add test keys
-- TODO: Add condition here for stable branches
Install('cznic-repo-keys-test')
-- Add test keys if branch is overriden (is defined
local updater_branch = os.getenv('_UPDATER_BRANCH_')
if updater_branch and updater_branch ~= "" then
Install('cznic-repo-keys-test')
end
-- Include any optional user script
user_script = os.getenv('UPDATER_SCRIPT')
......
......@@ -53,7 +53,7 @@ end
Install("ppp", "ppp-mod-pppoe", { priority = 40 })
-- Certificates
Install("dnssec-rootkey", "cznic-cacert-bundle", "cznic-repo-keys", "cznic-repo-keys-test", { critical = true })
Install("dnssec-rootkey", "cznic-cacert-bundle", "cznic-repo-keys", { critical = true })
-- Note: We don't ensure safety of these CAs
Install("ca-certificates", { priority = 40 })
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment