aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2018-06-21 19:54:05 +0100
committerBryn M. Reeves <bmr@redhat.com>2018-06-21 19:54:05 +0100
commit91d411766d0e315ae97fb5aebdf03865ccdb6e0a (patch)
treeabd96230dd703766d8f5c450a9d5fa932cd86a61
parent5b5f41585e87fd9ea93092a07c69e4b05aaff96d (diff)
downloadsos-91d411766d0e315ae97fb5aebdf03865ccdb6e0a.tar.gz
[policies/redhat] fix preset constant in RHELPolicy.probe_preset()
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/policies/redhat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py
index 849dcafc..42f67c5b 100644
--- a/sos/policies/redhat.py
+++ b/sos/policies/redhat.py
@@ -267,7 +267,7 @@ No changes will be made to system configuration.
def probe_preset(self):
# Package based checks
if self.pkg_by_name("satellite-common") is not None:
- return self.find_preset(SATELLITE)
+ return self.find_preset(RH_SATELLITE)
# Vanilla RHEL is default
return self.find_preset(RHEL)