From e6e96b65b68afe166c9ee51bd87feee433d1bc22 Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Tue, 18 Feb 2025 16:43:28 -0600 Subject: [PATCH] updated notes --- src/rhcsa.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/rhcsa.md b/src/rhcsa.md index 5ab9fb3..c4d051a 100644 --- a/src/rhcsa.md +++ b/src/rhcsa.md @@ -693,3 +693,10 @@ sudo dnf provides /bin/bash # Display the package that provides the /bin/bash co sudo dnf deplist httpd # Display the dependencies of the httpd package ``` +### modify the .repo file to skip the GPG check +```bash +sudo nano /etc/yum.repos.d/rhel.repo + +# Add the following line to the rhel.repo file: +gpgcheck=0 +```