Fix asc/gpg issues in instructions

This commit is contained in:
idk
2021-09-21 13:43:24 -04:00
parent b7bfe81f92
commit 61425d3a43

View File

@@ -97,7 +97,7 @@ user to root with <code>su</code> or by prefixing each command with <code>sudo</
<pre> <pre>
<code> <code>
sudo apt-get update sudo apt-get update
sudo apt-get install apt-transport-https curl</code> sudo apt-get install apt-transport-https lsb-release curl</code>
</pre> </pre>
</li> </li>
<li>{% trans file='/etc/apt/sources.list.d/i2p.list',file2='/etc/debian_version' %} <li>{% trans file='/etc/apt/sources.list.d/i2p.list',file2='/etc/debian_version' %}
@@ -106,14 +106,14 @@ user to root with <code>su</code> or by prefixing each command with <code>sudo</
Then, for all Current Debian distributions run the following command to create <code>{{ file }}</code>.{% endtrans %}<br> Then, for all Current Debian distributions run the following command to create <code>{{ file }}</code>.{% endtrans %}<br>
<pre> <pre>
<code> <code>
echo "deb [signed-by=/usr/share/keyrings/i2p-archive-keyring.asc] https://deb.i2p2.de/ $(lsb_release -sc) main" \ echo "deb [signed-by=/usr/share/keyrings/i2p-archive-keyring.gpg] https://deb.i2p2.de/ $(lsb_release -sc) main" \
| sudo tee /etc/apt/sources.list.d/i2p.list | sudo tee /etc/apt/sources.list.d/i2p.list
</code> </code>
</pre> </pre>
</li> </li>
<li>{% trans repokey=url_for('static', filename='i2p-debian-repo.key.asc') -%} <li>{% trans repokey=url_for('static', filename='i2p-debian-repo.key.gpg') -%}
Download <a href="{{ repokey }}">the key used to sign the repository</a>:{%- endtrans %} Download <a href="{{ repokey }}">the key used to sign the repository</a>:{%- endtrans %}
<pre> <pre>
<code> <code>
@@ -124,10 +124,9 @@ Download <a href="{{ repokey }}">the key used to sign the repository</a>:{%- en
<br /> <br />
<li> <li>
{% trans -%}Check the fingerprint and owner of the key without importing anything{%- endtrans %}:<br />
<pre> <pre>
<code> <code>
sudo mv ~/i2p-archive-keyring.asc /usr/share/keyrings</code> sudo mv ~/i2p-archive-keyring.gpg /usr/share/keyrings</code>
</pre> </pre>
</li> </li>