From 2b1b476ee10ecca99364520c2140ea5aa39f5382 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Tue, 11 Dec 2012 22:12:56 +0000 Subject: Use paths list in anaconda plugin The previous commit introduced a paths list for the module to collect but did not use it: fix the addCopySpecs call. --- sos/plugins/anaconda.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sos/plugins/anaconda.py b/sos/plugins/anaconda.py index 8f44a2ae..06a5b369 100644 --- a/sos/plugins/anaconda.py +++ b/sos/plugins/anaconda.py @@ -36,9 +36,7 @@ class anaconda(Plugin, RedHatPlugin): "/root/install.log", "/root/install.log.syslog"] - self.addCopySpecs([ - "/var/log/anaconda", - "/root/anaconda-ks.cfg"]) + self.addCopySpecs(paths) def postproc(self): self.doFileSub("/root/anaconda-ks.cfg", -- cgit