Skip to content
Snippets Groups Projects
Commit 28d78297 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Support setting whether an Apt repo is trusted"

parents 49c33e0a 2b06c6a3
No related branches found
No related tags found
No related merge requests found
......@@ -11,5 +11,8 @@ Signed-by: {{ apt_keys_path }}/{{ repo.signed_by }}
{% if repo.architecture is defined %}
Architecture: {{ repo.architecture }}
{% endif %}
{% if repo.trusted is defined %}
Trusted: {{ repo.trusted | bool }}
{% endif %}
{% endfor %}
......@@ -376,6 +376,7 @@ items:
``apt_keys_path`` (optional, default is unset)
* ``architecture``: whitespace-separated list of architectures that will be used
(optional, default is unset)
* ``trusted``: boolean value (optional, default is unset)
The default of ``apt_repositories`` is an empty list.
......
---
features:
- |
Adds support for setting whether an Apt repo is trusted.
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