aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/dnf.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/sos/plugins/dnf.py b/sos/plugins/dnf.py
new file mode 100644
index 00000000..c371d67b
--- /dev/null
+++ b/sos/plugins/dnf.py
@@ -0,0 +1,63 @@
+# Copyright (C) 2016 Red Hat, Inc., Sachin Patil <sacpatil@redhat.com>
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+from sos.plugins import Plugin, RedHatPlugin
+
+
+class DNFPlugin(Plugin, RedHatPlugin):
+ """dnf package manager"""
+ plugin_name = "dnf"
+ profiles = ('system', 'packagemanager', 'sysmgmt')
+
+ files = ('/etc/dnf/dnf.conf',)
+ packages = ('dnf',)
+
+ option_list = [
+ ("history", "captures transaction history", "fast", False)
+ ]
+
+ def setup(self):
+ self.add_copy_spec([
+ "/etc/dnf/dnf.conf",
+ "/etc/dnf/plugins/*",
+ "/etc/dnf/protected.d/*",
+ ])
+
+ self.limit = self.get_option("log_size")
+ if self.get_option("all_logs"):
+ self.add_copy_spec_limit("/var/log/dnf.*",
+ sizelimit=self.limit)
+ else:
+ self.add_copy_spec_limit("/var/log/dnf.log",
+ sizelimit=self.limit)
+ self.add_copy_spec_limit("/var/log/dnf.librepo.log",
+ sizelimit=self.limit)
+ self.add_copy_spec_limit("/var/log/dnf.rpm.log",
+ sizelimit=self.limit)
+
+ self.add_cmd_output("dnf --version",
+ suggest_filename="dnf_version")
+
+ self.add_cmd_output("dnf list installed *dnf*",
+ suggest_filename="dnf_installed_plugins")
+
+ self.add_cmd_output("dnf list extras",
+ suggest_filename="dnf_extra_packages")
+
+ if self.get_option("history"):
+ self.add_cmd_output("dnf history")
+
+# vim: set et ts=4 sw=4 :