diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-09-12 10:38:24 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-09-12 10:38:24 +0100 |
commit | 45ff8eca8b52f0256019010c0841a0877f800ff4 (patch) | |
tree | 16b4606d5e2c548f1611d20884fdd526f90e1eef | |
parent | 612fcb7e95722709037fb0ee276f4eeb9ce95f22 (diff) | |
download | sos-45ff8eca8b52f0256019010c0841a0877f800ff4.tar.gz |
[ovirt] ensure /etc/rhevm is collected
The path /etc/rhevem may be a symbolic link. Include a trailing
slash in the copy spec to ensure it is collectes.
Based on a suggestion from Sandro Bonazzola.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/ovirt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/ovirt.py b/sos/plugins/ovirt.py index 38bc542a..0ea16f65 100644 --- a/sos/plugins/ovirt.py +++ b/sos/plugins/ovirt.py @@ -85,7 +85,7 @@ class Ovirt(Plugin, RedHatPlugin): # Copy engine config files. self.add_copy_specs([ "/etc/ovirt-engine", - "/etc/rhevm", + "/etc/rhevm/", "/etc/ovirt-engine-dwh", "/var/log/ovirt-engine", "/var/log/ovirt-engine-dwh", |