aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2016-10-21 17:54:45 +0100
committerBryn M. Reeves <bmr@redhat.com>2016-10-21 17:54:45 +0100
commit1ac836aa0582228feec594cd3b201d1dc5b5bb27 (patch)
tree10dcc3f50ed981343dd280e6e69967540aee14c4
parent7ed39691a7744758615eb000f78c464202d3e5a5 (diff)
downloadsos-1ac836aa0582228feec594cd3b201d1dc5b5bb27.tar.gz
[dracut] add new plugin
Add a new plugin to collect configuration and state data from the dracut initramfs generator. Closes: #705. Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/dracut.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/sos/plugins/dracut.py b/sos/plugins/dracut.py
new file mode 100644
index 00000000..118b5dcb
--- /dev/null
+++ b/sos/plugins/dracut.py
@@ -0,0 +1,37 @@
+# Copyright (C) 2016 Red Hat, Inc., Bryn M. Reeves <bmr@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 Dracut(Plugin, RedHatPlugin):
+ """ Dracut initramfs generator """
+
+ plugin_name = "dracut"
+ packages = ("dracut",)
+
+ def setup(self):
+ self.add_copy_spec([
+ "/etc/dracut.conf",
+ "/etc/dracut.conf.d"
+ ])
+
+ self.add_cmd_output([
+ "dracut --list-modules",
+ "dracut --print-cmdline"
+ ])
+
+# vim: set et ts=4 sw=4 :