Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace apt-get with apt #545

Merged
merged 1 commit into from
Nov 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions doc/02-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ wget https://packages.icinga.com/centos/ICINGA-release.repo -O /etc/yum.repos.d/
<!-- {% endif %} -->

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

wget -O - https://packages.icinga.com/icinga.key | apt-key add -

Expand All @@ -80,7 +80,7 @@ DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release); \
echo "deb-src https://packages.icinga.com/debian icinga-${DIST} main" >> \
/etc/apt/sources.list.d/${DIST}-icinga.list

apt-get update
apt update
```
<!-- {% endif %} -->

Expand Down Expand Up @@ -126,8 +126,8 @@ zypper ref
<!-- {% endif %} -->

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

wget -O - https://packages.icinga.com/icinga.key | apt-key add -

Expand All @@ -137,7 +137,7 @@ wget -O - https://packages.icinga.com/icinga.key | apt-key add -
echo "deb-src https://packages.icinga.com/ubuntu icinga-${DIST} main" >> \
/etc/apt/sources.list.d/${DIST}-icinga.list

apt-get update
apt update
```
<!-- {% endif %} -->

Expand Down Expand Up @@ -172,7 +172,7 @@ yum install icingadb
#### Debian / Ubuntu
<!-- {% endif %} -->
```bash
apt-get install icingadb
apt install icingadb
```
<!-- {% endif %} -->

Expand Down