Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
mentors.debian.net
debexpo
Commits
e4a94e04
Verified
Commit
e4a94e04
authored
Oct 17, 2021
by
Baptiste Beauplat
Browse files
Add docs for HKP usage
parent
c94cc0f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
debexpo/base/templates/reviewers.html
View file @
e4a94e04
...
...
@@ -109,6 +109,31 @@
</li>
</ul>
<p>
{% blocktrans with name=settings.SITE_NAME trimmed %}
You might also want to retrieve the maintainer GPG key to verify that all
subsequent uploads are signed using the same key. While the key should be
publicly available on servers such as
<em>
keys.openpgp.org
</em>
or
<em>
keyserver.ubuntu.com
</em>
, {{ name }} can also act as a basic keyserver.
Note that only key retrieval is implemented. Update or search are not
available.
{% endblocktrans %}
</p>
<p>
{% blocktrans trimmed %}
Given a key id, you can retrieve a key using:
{% endblocktrans %}
</p>
<pre>
{% if request.scheme == 'https' %}
gpg --keyserver hkps://{{ request.get_host }} --recv-keys 0x123456789
{% else %}
gpg --keyserver hkp://{{ request.get_host }} --recv-keys 0x123456789
{% endif %}
</pre>
<h3>
{% trans 'Established sponsor guidelines' %}
</h3>
<p>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment