Debian

Archive Key

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

Debian Backports

Some of the packages may require Debian Backports repository. Make sure you enable it when you see dependecy problems.

Release Builds

cat >/etc/apt/sources.list.d/icinga.sources <<EOF
Types: deb deb-src
URIs: https://packages.icinga.com/debian/
Suites: icinga-$(. /etc/os-release; echo "$VERSION_CODENAME")
Components: main
Signed-By: /usr/share/keyrings/icinga-archive-keyring.gpg
EOF

Testing (Pre Release) Builds

These are pre release builds which are not recommended for production use. If you're setting up a production system please use the release packages instead.

cat >/etc/apt/sources.list.d/icinga.sources <<EOF
Types: deb deb-src
URIs: https://packages.icinga.com/debian/
Suites: icinga-$(. /etc/os-release; echo "$VERSION_CODENAME")-testing
Components: main
Signed-By: /usr/share/keyrings/icinga-archive-keyring.gpg
EOF

Snapshot Builds

These are snapshot builds which are not suitable for production use. If you're setting up a production system please use the release packages instead.

cat >/etc/apt/sources.list.d/icinga.sources <<EOF
Types: deb deb-src
URIs: https://packages.icinga.com/debian/
Suites: icinga-$(. /etc/os-release; echo "$VERSION_CODENAME")-snapshots
Components: main
Signed-By: /usr/share/keyrings/icinga-archive-keyring.gpg
EOF