summaryrefslogtreecommitdiff
path: root/templates/index.html.erb
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-02-06 14:07:17 -0500
committerMicah Anderson <micah@riseup.net>2013-02-06 14:07:17 -0500
commitce1ebea7cc3911ebac616a8a065a484b9452e72b (patch)
treeaab52e2f06ae31b39a34d59b5432311f30a22911 /templates/index.html.erb
parent31a7ed2a84d909215f1f12ed2bb78bb5fe28bbcd (diff)
parent50075192d8827d7fa8721ffb6847fedbb4a99c60 (diff)
Merge branch 'master' into leap
There were merge conflicts with this merge, but I deliberately merged with '-s recursive -X theirs' to take the shared modules version of the changes. We had some changes that we made, that I will incorporate as separate commits on top of shared
Diffstat (limited to 'templates/index.html.erb')
-rw-r--r--templates/index.html.erb29
1 files changed, 19 insertions, 10 deletions
diff --git a/templates/index.html.erb b/templates/index.html.erb
index 65ac222..7990d51 100644
--- a/templates/index.html.erb
+++ b/templates/index.html.erb
@@ -1,11 +1,11 @@
-<html>
+<html><!-- This file is managed by Puppet. Do not edit, any changes will be overwritten! -->
<head>
-<title><%= domain %> Debian package repository</title>
+<title><%= @domain %> Debian package repository</title>
</head>
<body>
<h1>Introduction</h1>
-<p>This is the Debian package repository of <%= reprepro_origin %>. It is used for internal
+<p>This is the Debian package repository of <%= @origin %>. It is used for internal
distribution of locally built packages not yet part of Debian. Feel free to use
it for yourself, but it comes at no warranty.
@@ -14,13 +14,13 @@ it for yourself, but it comes at no warranty.
<p>In your /etc/apt/source.list:
<pre>
-deb http://debian.<%= domain %>/debian lenny main
-deb-src http://debian.<%= domain %>/debian lenny main
+deb http://debian.<%= @domain %>/debian stable main
+deb-src http://debian.<%= @domain %>/debian stable main
</pre>
-"lenny", of course, can be replaced by your distribution. Know that we usually
-package straight for etch or lenny. Packages will likely not be available in
-squeeze or sid.</p>
+<code>stable</code> can be replaced by <code>testing</code>
+or <code>unstable</code> if you wish to test the development version
+of packages.</p>
<h2>Adding the archive key to your keyring</h2>
@@ -28,10 +28,19 @@ squeeze or sid.</p>
verified against a whitelist of trusted uploaders) using OpenPGP (GnuPG, to be
more precise).</p>
-<p>The key of the archive is in the <a href="/key.asc">key.asc file</a>. You should add the key using something like this:</p>
+<p>The key of the archive is in the <a href="/debian/key.asc">key.asc file</a>. You should add the key using something like this:</p>
<pre>
-wget http://debian.<%= domain %>/debian/key.asc
+wget http://debian.<%= @domain %>/debian/key.asc
apt-key add key.asc
apt-get update
</pre>
+
+<h2>Browsing the archive</h2>
+
+There is no interactive interface to browse the archive.
+
+<ul>
+<li>To see the list of all packages regardless of the distribution, see the <a href="/debian/pool">pool directory</a></li>
+<li>To see the package descriptions per distribution, see the <a href="/debian/dists">dists directory</a>
+</li>