From 536d26bd4037e6a2c808380f51a1bea387a04452 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 22 Oct 2019 13:51:42 +0200 Subject: [PATCH] _config.yml: Switch apt.url to apt.domain and drop schema. --- _config.yml | 2 +- index.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_config.yml b/_config.yml index 46ca295..ee2f197 100644 --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,7 @@ title: Sw/eden APT apt: - url: https://apt.eossweden.org + domain: apt.eossweden.org components: - stable - edge diff --git a/index.md b/index.md index 44e7cd0..6bcb660 100644 --- a/index.md +++ b/index.md @@ -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 }}/ bionic [ ] [ ] +https://{{ site.apt.domain }}/ bionic [ ] [ ] ``` one `repository` and one or more `components` needs to be specified. These are explained below.