aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/atomichost.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/sos/plugins/atomichost.py b/sos/plugins/atomichost.py
index ce30ac70..a339557e 100644
--- a/sos/plugins/atomichost.py
+++ b/sos/plugins/atomichost.py
@@ -27,10 +27,7 @@ class AtomicHost(Plugin, RedHatPlugin):
]
def check_enabled(self):
- if not os.path.exists("/host/etc/system-release-cpe"):
- return False
- cpe = open("/host/etc/system-release-cpe", "r").readlines()
- return ':atomic-host' in cpe[0]
+ return self.policy().in_container()
def setup(self):
self.add_copy_spec("/etc/ostree/remotes.d")