aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Quigley <bryan.quigley@canonical.com>2017-02-21 11:43:33 -0500
committerBryn M. Reeves <bmr@redhat.com>2017-03-27 17:41:21 +0100
commitc9f661107c67244c2b7d4822bb344c54df67b058 (patch)
treea57dd6acc4d0e1057245f3b36e77921f37244cf1
parent3770b446555f26c24c2fe0eba6f0eee1c0aca6e4 (diff)
downloadsos-c9f661107c67244c2b7d4822bb344c54df67b058.tar.gz
[policies/debian] Remove glob in command that causes directories to be queried.
The change in how commands are parsed was introduced in commit 04d412816de2e4053f43956adf536272a2ddc19c. This caused our old dpkg parsing to not work. Whatever the reason for the \* in the command it doesn't appear to be needed now anyway so removing it. Resolves: #935 Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
-rw-r--r--sos/policies/debian.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/policies/debian.py b/sos/policies/debian.py
index a785c396..dc7f2e68 100644
--- a/sos/policies/debian.py
+++ b/sos/policies/debian.py
@@ -11,7 +11,7 @@ class DebianPolicy(LinuxPolicy):
report_name = ""
ticket_number = ""
package_manager = PackageManager(
- "dpkg-query -W -f='${Package}|${Version}\\n' \*")
+ "dpkg-query -W -f='${Package}|${Version}\\n'")
valid_subclasses = [DebianPlugin]
PATH = "/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games" \
+ ":/usr/local/sbin:/usr/local/bin"
@@ -21,7 +21,7 @@ class DebianPolicy(LinuxPolicy):
self.report_name = ""
self.ticket_number = ""
self.package_manager = PackageManager(
- "dpkg-query -W -f='${Package}|${Version}\\n' \*")
+ "dpkg-query -W -f='${Package}|${Version}\\n'")
self.valid_subclasses = [DebianPlugin]
@classmethod