Commit header.html from the actual repo to git
This commit is contained in:
parent
8016833a5b
commit
452391b55e
1 changed files with 42 additions and 0 deletions
42
header.html
Normal file
42
header.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<!--
|
||||
If you're reading this, then this is the header.html file used with Nginx's
|
||||
fancyindex thingy on apt.starbeamrainbowlabs.com. While you're welcome to
|
||||
use this file as a guide for your own apt repository, I suggest that you
|
||||
alter it to make it your own, as it contains a number specific references
|
||||
to my own personal apt repository.
|
||||
|
||||
Note also that this file, once edited, must be symlinked into the repo
|
||||
directory (once it's created by aptosaurus.sh) manually - this isn't done
|
||||
automatically!
|
||||
-->
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>sbrl apt repository</title>
|
||||
<script>window.document.title = `${window.location.pathname} • sbrl apt repository`;</script>
|
||||
|
||||
<link rel="stylesheet" href="/theme.css" />
|
||||
</head>
|
||||
<body>
|
||||
<p>This is the starbeamrainbowlabs.com apt repository.</p>
|
||||
|
||||
<p>Add this repository to your debian-based system like this:</p>
|
||||
|
||||
<pre><code># Add the repository
|
||||
echo "deb https://apt.starbeamrainbowlabs.com/ ./ # apt.starbeamrainbowlabs.com" | sudo tee /etc/apt/sources.list.d/sbrl.list
|
||||
# Import the signing key
|
||||
wget -q https://apt.starbeamrainbowlabs.com/aptosaurus.asc -O- | sudo apt-key add -
|
||||
# Alternatively, import the signing key from a keyserver:
|
||||
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D48D801C6A66A5D8
|
||||
# Update apt's cache
|
||||
sudo apt update</code></pre>
|
||||
|
||||
<p>Packages in this repository are automatically signed by aptosaurus, my apt repository bot. While every caution has been taken to avoid signing things we shouldn't, you should still exercise caution.</p>
|
||||
|
||||
<p>While packages in this repository primarily come from continuous integration / deployment, package updates are normally stashed and released every day at 2am, to ease updates for clients.</p>
|
||||
|
||||
<p>A human-readable summary of the packages available in this repository can be found in <a href="/SUMMARY.txt"><code>SUMMARY.txt</code></a>.</p>
|
||||
|
||||
<h1>Index of
|
Loading…
Reference in a new issue