{% assign setup-instructions_repo = include.repo | default: site.apt.repo %} {% assign setup-instructions_dist = include.distribution | default: site.apt.distribution %} {% assign setup-instructions_domain = include.domain | default: site.apt.domain %} {% if include.collapse %}

Setup -

{% endif %}

First you need to make sure some packages are installed and that our gpg key is added to apt:

{% highlight bash %} sudo apt-get install software-properties-common curl -sS https://{{ setup-instructions_domain }}/key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/eossweden-2023.gpg > /dev/null {% endhighlight %}

Then you can add one or more of your repositories:

{% include apt-add.html repo=setup-instructions_repo distribution=setup-instructions_dist domain=setup-instructions_domain components="stable" update=true %}

The url is structures as follows:

{% highlight html %} https://{{ setup-instructions_domain }}/ [ ] [ ] {% endhighlight %}

one repository, distribution and one or more components needs to be specified. These are explained in detail here

{% if include.collapse %}
{% endif %}