diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2019-03-21 17:23:00 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-21 17:23:00 +0000 |
commit | 99159870fb5a602eb414fec2ccd66dbb492f376a (patch) | |
tree | 0147cc3209cc53d108710834f246de33a3e66d19 | |
parent | 7a44309f95325fa35b67d44866a358a550957c2a (diff) | |
download | sos-99159870fb5a602eb414fec2ccd66dbb492f376a.tar.gz |
[openstack_neutron] fix method name typo
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openstack_neutron.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/openstack_neutron.py b/sos/plugins/openstack_neutron.py index d338ee21..445f7646 100644 --- a/sos/plugins/openstack_neutron.py +++ b/sos/plugins/openstack_neutron.py @@ -45,7 +45,7 @@ class OpenStackNeutron(Plugin): # rather take a list of files in the dir only self.add_copy_spec("/var/lib/neutron/") self.add_forbidden_path("/var/lib/neutron/lock") - self.add_cmd_option("ls -laZR /var/lib/neutron/lock") + self.add_cmd_output("ls -laZR /var/lib/neutron/lock") if self.get_option("verify"): self.add_cmd_output("rpm -V %s" % ' '.join(self.packages)) |