Skip to content

Commit

Permalink
Update docs, add setup for bookworm and remove buster
Browse files Browse the repository at this point in the history
  • Loading branch information
lbetz committed Feb 16, 2024
1 parent e1f1abc commit 5bdfe29
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions doc/01-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,27 +82,29 @@ icinga::repos:
Username `<username>` and password `<password>` must be set according to your subscription.


## Debian Buster:
## Debian Bullseye:

```bash
apt install wget apt-transport-https gpg
wget -O - https://packages.netways.de/netways-repo.asc | apt-key add -
echo "deb https://packages.netways.de/extras/debian buster main" | tee /etc/apt/sources.list.d/netways-extras-release.list
wget -O - https://apt.puppetlabs.com/DEB-GPG-KEY-puppet-20250406 | apt-key add -
echo "deb https://apt.puppetlabs.com buster puppet7" | tee /etc/apt/sources.list.d/puppet7.list
get -O - https://packages.netways.de/netways-repo.asc | apt-key add -
echo "deb https://packages.netways.de/extras/ubuntu bullseye main" | tee /etc/apt/sources.list.d/netways-extras-release.list
wget -O - https://apt.puppetlabs.com/DEB-GPG-KEY-puppet-20250406 | apt-key add -
echo "deb https://apt.puppetlabs.com bullseye puppet7" | tee /etc/apt/sources.list.d/puppet7.list
apt update

apt install -y icinga-installer
```

## Debian Bullseye:
## Debian Bookworm:

For bookworm still exists no puppet-agent package. But we can use the Bullseye version.

```bash
apt install wget apt-transport-https gpg
wget -O - https://packages.netways.de/netways-repo.asc | apt-key add -
echo "deb https://packages.netways.de/extras/debian bullseye main" | tee /etc/apt/sources.list.d/netways-extras-release.list
wget -O - https://apt.puppetlabs.com/DEB-GPG-KEY-puppet-20250406 | apt-key add -
echo "deb https://apt.puppetlabs.com bullseye puppet7" | tee /etc/apt/sources.list.d/puppet7.list
wget -O - https://packages.netways.de/netways-repo.asc | gpg --dearmor -o /usr/share/keyrings/netways-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/netways-archive-keyring.gpg] https://packages.netways.de/extras/ubuntu bookworm main" | tee /etc/apt/sources.list.d/netways-extras-release.list
wget -O - https://apt.puppetlabs.com/DEB-GPG-KEY-puppet-20250406 | gpg --dearmor -o /usr/share/keyrings/puppet-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/puppet-archive-keyring.gpg] https://apt.puppetlabs.com bullseye puppet7" | tee /etc/apt/sources.list.d/puppet7.list
apt update

apt install -y icinga-installer
Expand Down

0 comments on commit 5bdfe29

Please sign in to comment.