diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 19:07:46 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 19:07:46 +0100 |
commit | 262b16d01f314d6b810eae9fba0e9ed5e20c76fb (patch) | |
tree | cf579f923bc24162927306c25c20c9ed678fe453 | |
parent | 60b0b1100a1aa9dd9246f0e5ecf29e50d984c6f6 (diff) | |
download | sos-262b16d01f314d6b810eae9fba0e9ed5e20c76fb.tar.gz |
Fix lies, damn lies & misnaming in anacron plug-in
The anacron plugin falsely declares itself to be named 'anaconda'
(it started life as a copy of it). Fix it.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/anacron.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/anacron.py b/sos/plugins/anacron.py index e5019a43..04b0dcbf 100644 --- a/sos/plugins/anacron.py +++ b/sos/plugins/anacron.py @@ -18,7 +18,7 @@ import os class Anacron(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): - plugin_name = 'anaconda' + plugin_name = 'anacron' packages = ('anacron',) |