{% import 'partials/components/ui_macros.html' as ui %} {% call ui.modal_wrapper("debian-sources-modal", max_width="720px", padding="24px 28px") %} {{ ui.modal_title(title=label ~ " – " ~ filename, icon="log") }}

Speichere als /etc/apt/sources.list.d/{{ filename }}:

{{ snippet }}
Danach: sudo apt update
{% if gpg_url %}

GPG-Schlüssel installieren:

curl -fsSL {{ gpg_url }} | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/{{ repo_id }}.gpg
{% endif %}
{{ ui.modal_footer_simple() }} {% endcall %}