diff options
author | jhjaggars <jhjaggars@gmail.com> | 2011-12-01 12:47:50 -0800 |
---|---|---|
committer | jhjaggars <jhjaggars@gmail.com> | 2011-12-01 12:47:50 -0800 |
commit | 1e83a26da25981f362d4acc35d61dfa3b2ab56a3 (patch) | |
tree | de6f4183bfd8b37c17cad13273ff72442f6b37c0 | |
parent | 7538023d9a1d0f63da8785d3d1fdd6c283d0c6d7 (diff) | |
parent | 9723868b5af4d090e877e8bd20e656867504ead2 (diff) | |
download | sos-1e83a26da25981f362d4acc35d61dfa3b2ab56a3.tar.gz |
Merge pull request #16 from strider/master
Fixed path to logrotate.status, /var/lib/logrotate.status instead of /var/lig/logrotate.status
-rw-r--r-- | sos/plugins/logrotate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/logrotate.py b/sos/plugins/logrotate.py index c9362e17..adc65aae 100644 --- a/sos/plugins/logrotate.py +++ b/sos/plugins/logrotate.py @@ -23,4 +23,4 @@ class logrotate(sos.plugintools.PluginBase): suggest_filename = "logrotate_debug") self.addCopySpecs([ "/etc/logrotate*", - "/var/lig/logrotate.status"]) + "/var/lib/logrotate.status"]) |