diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2018-12-12 14:37:50 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-19 18:19:17 +0000 |
commit | 06c3a919a05d1c9c6550da7c2d850263c9eeaf7c (patch) | |
tree | df6e4dd54669bdb3199c801b58d2a7cd184f64ff | |
parent | 8ac6530fe34ab142a869c9ff46c35453a8a4460a (diff) | |
download | sos-06c3a919a05d1c9c6550da7c2d850263c9eeaf7c.tar.gz |
[tuned] Collect verify output
Adds collection of 'tuned-adm verify' to allow for quick and easy
reference as to if tunables have been changed on a system using tuned.
Resolves: #1513
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/tuned.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/tuned.py b/sos/plugins/tuned.py index 9d8e9f65..d15794f5 100644 --- a/sos/plugins/tuned.py +++ b/sos/plugins/tuned.py @@ -22,7 +22,8 @@ class Tuned(Plugin, RedHatPlugin): self.add_cmd_output([ "tuned-adm list", "tuned-adm active", - "tuned-adm recommend" + "tuned-adm recommend", + "tuned-adm verify" ]) self.add_copy_spec([ "/etc/tuned.conf", |