From 01e79de06d5aa0585044bb85880bee60f396f4f4 Mon Sep 17 00:00:00 2001 From: lopussum Date: Mon, 27 Jul 2026 14:06:27 +0200 Subject: [PATCH 1/2] Update README: add package installation instructions --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/README.md b/README.md index e13592d..d91e10d 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,48 @@ by a graphing system. There are no parameters available yet. +# Installation + +## Packages + +NETWAYS provides this plugin via [https://packages.netways.de](https://packages.netways.de/). + +### Debian: + +First you have to setup the **plugins** repository: + +``` +wget -O - https://packages.netways.de/netways-repo.asc | gpg --dearmor > /usr/share/keyrings/netways.gpg + +DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release) +echo "deb [signed-by=/usr/share/keyrings/netways.gpg] https://packages.netways.de/plugins/debian ${DIST} main" > /etc/apt/sources.list.d/netways-plugins.list + +apt update +``` + +Then install the package: + +``` +sudo apt install netways-plugins-system-basics +``` + +### RHEL or compatible: + +First you have to setup the **plugins** repository: + +Import the key: + +``` +sudo rpm --import https://packages.netways.de/netways-repo.asc +``` + +Choose the [repository](https://packages.netways.de/plugins/epel/) that fits your version. + +Then install the Package: + +``` +sudo dnf install netways-plugins-system-basics +``` ## Building From 2edb5cbad69d7997e883ad874dc60ff3361f3291 Mon Sep 17 00:00:00 2001 From: lopussum Date: Mon, 27 Jul 2026 17:53:28 +0200 Subject: [PATCH 2/2] Update README: add package installation instructions --- README.md | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index d91e10d..61f1535 100644 --- a/README.md +++ b/README.md @@ -104,20 +104,9 @@ There are no parameters available yet. NETWAYS provides this plugin via [https://packages.netways.de](https://packages.netways.de/). -### Debian: - -First you have to setup the **plugins** repository: - -``` -wget -O - https://packages.netways.de/netways-repo.asc | gpg --dearmor > /usr/share/keyrings/netways.gpg - -DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release) -echo "deb [signed-by=/usr/share/keyrings/netways.gpg] https://packages.netways.de/plugins/debian ${DIST} main" > /etc/apt/sources.list.d/netways-plugins.list - -apt update -``` +To install this module, follow the setup instructions for the **plugins** repository. -Then install the package: +### Debian: ``` sudo apt install netways-plugins-system-basics @@ -125,18 +114,6 @@ sudo apt install netways-plugins-system-basics ### RHEL or compatible: -First you have to setup the **plugins** repository: - -Import the key: - -``` -sudo rpm --import https://packages.netways.de/netways-repo.asc -``` - -Choose the [repository](https://packages.netways.de/plugins/epel/) that fits your version. - -Then install the Package: - ``` sudo dnf install netways-plugins-system-basics ```