From fd77c40e39532a87ec8d53b27fd1a09440616c2b Mon Sep 17 00:00:00 2001 From: Mike Pennisi Date: Tue, 21 May 2019 17:41:12 -0400 Subject: [PATCH] Update documentation to fetch keys securely Instruct users to retrieve APT keys via a secure connection to avoid man-in-the-middle attacks. --- doc/02-Installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/02-Installation.md b/doc/02-Installation.md index de494b39d..deda4444f 100644 --- a/doc/02-Installation.md +++ b/doc/02-Installation.md @@ -47,7 +47,7 @@ Below is a list with **examples** for various distributions. **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 apt-get update ``` @@ -57,7 +57,7 @@ apt-get update **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' apt-get update ```