From d5bab38d8a6f0fa768268a683fc24997ccc68e66 Mon Sep 17 00:00:00 2001 From: Laurence Jones Date: Fri, 12 Jun 2026 12:59:00 +0100 Subject: [PATCH] fix(ilp): Debian yum and add rhel Fix Debian package manager instructions and add RHEL tab The Debian install instructions incorrectly used `yum`, but Debian uses `apt`, like Ubuntu. This updates the Debian commands to use `apt` and adds a separate RHEL-family option using `dnf`, which has superseded `yum` on most modern RPM-based distributions. --- documentation/ingestion/ilp/overview.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/documentation/ingestion/ilp/overview.md b/documentation/ingestion/ilp/overview.md index 87769bfbb..9054106fd 100644 --- a/documentation/ingestion/ilp/overview.md +++ b/documentation/ingestion/ilp/overview.md @@ -315,7 +315,7 @@ Create `d`, `x` & `y` tokens for client usage. - `jq`: For pretty JSON output. +{ label: "Debian", value: "debian" }, { label: "Ubuntu", value: "ubuntu" }, { label: "RHEL", value: "rhel" }, ]}> @@ -329,8 +329,8 @@ brew install jq ```bash -yum install jose -yum install jq +apt install jose +apt install jq ``` @@ -344,6 +344,15 @@ apt install jq + + +```bash +dnf install jose +dnf install jq +``` + + + #### Server configuration