aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/policies/redhat.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py
index 89c7fd26..399db6f7 100644
--- a/sos/policies/redhat.py
+++ b/sos/policies/redhat.py
@@ -106,7 +106,8 @@ No changes will be made to system configuration.
def check(self):
"""This method checks to see if we are running on RHEL. It returns True
or False."""
- return (os.path.isfile('/etc/redhat-release'))
+ return (os.path.isfile('/etc/redhat-release')
+ and not os.path.isfile('/etc/fedora-release'))
def rhelVersion(self):
try:
@@ -135,7 +136,7 @@ No changes will be made to system configuration.
def getLocalName(self):
return self.rhnUsername() or self.hostName()
-class FedoraPolicy(LinuxPolicy):
+class FedoraPolicy(RedHatPolicy):
distro = "Fedora"
vendor = "the Fedora Project"