aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/xen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/xen.py b/sos/plugins/xen.py
index 096670ce..f078c6ea 100644
--- a/sos/plugins/xen.py
+++ b/sos/plugins/xen.py
@@ -44,7 +44,7 @@ class Xen(Plugin, RedHatPlugin):
return (self.determine_xen_host() == "baremetal")
def is_running_xenstored(self):
- xs_pid = self.call_ext_prof("pidof xenstored")['ouput']
+ xs_pid = self.call_ext_prog("pidof xenstored")['output']
xs_pidnum = re.split('\n$', xs_pid)[0]
return xs_pidnum.isdigit()