Update documentation to fetch keys securely

Instruct users to retrieve APT keys via a secure connection to avoid
man-in-the-middle attacks.
This commit is contained in:
Mike Pennisi 2019-05-21 17:41:12 -04:00
parent 467cabea77
commit fd77c40e39

View File

@ -47,7 +47,7 @@ Below is a list with **examples** for various distributions.
**Debian Stretch**: **Debian Stretch**:
``` ```
wget -O - http://packages.icinga.com/icinga.key | apt-key add - wget -O - https://packages.icinga.com/icinga.key | apt-key add -
echo 'deb http://packages.icinga.com/debian icinga-stretch main' >/etc/apt/sources.list.d/icinga.list echo 'deb http://packages.icinga.com/debian icinga-stretch main' >/etc/apt/sources.list.d/icinga.list
apt-get update apt-get update
``` ```
@ -57,7 +57,7 @@ apt-get update
**Ubuntu Xenial**: **Ubuntu Xenial**:
``` ```
wget -O - http://packages.icinga.com/icinga.key | apt-key add - wget -O - https://packages.icinga.com/icinga.key | apt-key add -
add-apt-repository 'deb http://packages.icinga.com/ubuntu icinga-xenial main' add-apt-repository 'deb http://packages.icinga.com/ubuntu icinga-xenial main'
apt-get update apt-get update
``` ```