diff options
author | Nijin Ashok <nashok@redhat.com> | 2016-06-11 12:11:12 +0530 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-01-17 16:58:16 +0000 |
commit | 414651b60943c9abece8a51e3db151c0813d51db (patch) | |
tree | ae99919bdf115ca0f438b8619636499155fe3388 | |
parent | daaddf7c3b1a2530029102863062110489154deb (diff) | |
download | sos-414651b60943c9abece8a51e3db151c0813d51db.tar.gz |
[ovirt_hosted_engine] Add new location for vm.conf and broker.conf
From ovirt 3.6, vm.conf and broker.conf is in the shared storage and
not at /etc/ovirt-hosted-engine.The ha engine keeps a local copy of
these files under /var/run/ovirt-hosted-engine-ha/ and
/var/lib/ovirt-hosted-engine-ha/ which is extracted from the shared
storage.
Include the new location of vm.conf and broker.conf in the list of
files to be collected
Signed-off-by: Nijin Ashok <nashok@redhat.com>
Signed-off-by: Simone Tiraboschi <stirabos@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
Closes: #833.
-rw-r--r-- | sos/plugins/ovirt_hosted_engine.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sos/plugins/ovirt_hosted_engine.py b/sos/plugins/ovirt_hosted_engine.py index 02cb2b62..bef11a52 100644 --- a/sos/plugins/ovirt_hosted_engine.py +++ b/sos/plugins/ovirt_hosted_engine.py @@ -52,6 +52,8 @@ class OvirtHostedEngine(Plugin, RedHatPlugin): '/etc/ovirt-hosted-engine-ha/broker.conf', '/etc/ovirt-hosted-engine-ha/broker-log.conf', '/etc/ovirt-hosted-engine-ha/notifications/state_transition.txt', + '/var/run/ovirt-hosted-engine-ha/vm.conf', + '/var/lib/ovirt-hosted-engine-ha/broker.conf', ]) all_setup_logs = glob.glob(self.SETUP_LOG_GLOB) |