summaryrefslogtreecommitdiffstats
path: root/base/common/python/pki/system.py
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/python/pki/system.py')
-rw-r--r--base/common/python/pki/system.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/base/common/python/pki/system.py b/base/common/python/pki/system.py
index 9ea93677a..b530d5a10 100644
--- a/base/common/python/pki/system.py
+++ b/base/common/python/pki/system.py
@@ -21,6 +21,11 @@
import pki.encoder as encoder
import xml.etree.ElementTree as ET
+import os
+
+SYSTEM_TYPE="Fedora/RHEL"
+if os.path.exists("/etc/debian_version"):
+ SYSTEM_TYPE="debian"
class SecurityDomainInfo: