Skip to content

Commit

Permalink
.deb: let user install icinga-archive-keyring package
Browse files Browse the repository at this point in the history
  • Loading branch information
Al2Klimov committed Sep 3, 2024
1 parent 8293303 commit e7f6af3
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions doc/02-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,13 @@ Here's how to add it to your system:

```bash
apt update
apt -y install apt-transport-https wget gnupg
apt -y install apt-transport-https wget

wget -O - https://packages.icinga.com/icinga.key | gpg --dearmor -o /usr/share/keyrings/icinga-archive-keyring.gpg
wget -O icinga-archive-keyring.deb "https://packages.icinga.com/icinga-archive-keyring_latest+debian$(
. /etc/os-release; echo "$VERSION_ID"
).deb"

apt install ./icinga-archive-keyring.deb

DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release); \
echo "deb [signed-by=/usr/share/keyrings/icinga-archive-keyring.gpg] https://packages.icinga.com/debian icinga-${DIST} main" > \
Expand All @@ -50,9 +54,13 @@ apt update

```bash
apt update
apt -y install apt-transport-https wget gnupg
apt -y install apt-transport-https wget

wget -O icinga-archive-keyring.deb "https://packages.icinga.com/icinga-archive-keyring_latest+ubuntu$(
. /etc/os-release; echo "$VERSION_ID"
).deb"

wget -O - https://packages.icinga.com/icinga.key | gpg --dearmor -o /usr/share/keyrings/icinga-archive-keyring.gpg
apt install ./icinga-archive-keyring.deb

. /etc/os-release; if [ ! -z ${UBUNTU_CODENAME+x} ]; then DIST="${UBUNTU_CODENAME}"; else DIST="$(lsb_release -c| awk '{print $2}')"; fi; \
echo "deb [signed-by=/usr/share/keyrings/icinga-archive-keyring.gpg] https://packages.icinga.com/ubuntu icinga-${DIST} main" > \
Expand Down

0 comments on commit e7f6af3

Please sign in to comment.