aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/ntp.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/ntp.py b/sos/plugins/ntp.py
index 0e39b9d0..c0f731d5 100644
--- a/sos/plugins/ntp.py
+++ b/sos/plugins/ntp.py
@@ -30,7 +30,10 @@ class Ntp(Plugin):
"/etc/ntp/step-tickers",
"/etc/ntp/ntpservers"
])
- self.add_cmd_output("ntptime")
+ self.add_cmd_output([
+ "ntptime",
+ "ntpq -p"
+ ])
class RedHatNtp(Ntp, RedHatPlugin):