1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00

_config.yml: Switch apt.url to apt.domain and drop schema.

This commit is contained in:
Henrik Hautakoski 2019-10-22 13:51:42 +02:00
parent 0b70486ff3
commit 536d26bd40
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
title: Sw/eden APT
apt:
url: https://apt.eossweden.org
domain: apt.eossweden.org
components:
- stable
- edge

View file

@ -1,12 +1,12 @@
The repository is hosted on [{{ site.apt.url }}]({{ site.apt.url }})
The repository is hosted on [{{ site.apt.domain }}](https://{{ site.apt.domain }})
## Setup
First you must add our `gpg` key to `apt`:
```bash
$ curl {{ site.apt.url }}/key 2> /dev/null | sudo apt-key add -
$ curl https://{{ site.apt.domain }}/key 2> /dev/null | sudo apt-key add -
```
Then you can add one or more of your repositories:
@ -16,7 +16,7 @@ Then you can add one or more of your repositories:
The url is structures as follows:
```
{{ site.apt.url }}/<repository> bionic <component> [ <component1> ] [ <componentN> ]
https://{{ site.apt.domain }}/<repository> bionic <component> [ <component1> ] [ <componentN> ]
```
one `repository` and one or more `components` needs to be specified. These are explained below.