From 30fb7923d274fbda95a2088a9396f4b5a55e8f82 Mon Sep 17 00:00:00 2001 From: Nik08 Date: Fri, 26 Jun 2026 20:53:43 +0530 Subject: [PATCH] Fix uninstall documentation for RHEL systems - Update dnf command to use 'inspec-enterprise' package name instead of 'inspec' - Fix rpm verification command to use 'rpm -qa | grep inspec' for proper filtering Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: Nik08 --- content/uninstall.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/uninstall.md b/content/uninstall.md index 923a0c5..956deac 100644 --- a/content/uninstall.md +++ b/content/uninstall.md @@ -42,7 +42,7 @@ To uninstall Chef InSpec, follow these steps: - Using `dnf`: ```sh - sudo dnf remove inspec + sudo dnf remove inspec-enterprise ``` - For Amazon Linux 2 or systems using `yum`: @@ -54,7 +54,7 @@ To uninstall Chef InSpec, follow these steps: 1. Verify that the package has been removed: ```sh - rpm -qa inspec + rpm -qa | grep inspec ``` The command returns no output if the package is removed successfully.