36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From e97700d867ffa949c97f8a635a76b9ce510e806f Mon Sep 17 00:00:00 2001
|
|
Message-Id: <e97700d867ffa949c97f8a635a76b9ce510e806f.1580460243.git.mprivozn@redhat.com>
|
|
In-Reply-To: <5965f20fe0275b324c9b84ab7f48dd7db0494495.1580460243.git.mprivozn@redhat.com>
|
|
References: <5965f20fe0275b324c9b84ab7f48dd7db0494495.1580460243.git.mprivozn@redhat.com>
|
|
From: Michal Privoznik <mprivozn@redhat.com>
|
|
Date: Fri, 31 Jan 2020 09:42:14 +0100
|
|
Subject: [PATCH 2/3] Fix paths in libvirt-guests.sh.in
|
|
|
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
|
---
|
|
tools/libvirt-guests.sh.in | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/tools/libvirt-guests.sh.in b/tools/libvirt-guests.sh.in
|
|
index a881f6266e..79d38b3e9a 100644
|
|
--- a/tools/libvirt-guests.sh.in
|
|
+++ b/tools/libvirt-guests.sh.in
|
|
@@ -39,11 +39,11 @@ START_DELAY=0
|
|
BYPASS_CACHE=0
|
|
SYNC_TIME=0
|
|
|
|
-test -f "$sysconfdir"/sysconfig/libvirt-guests &&
|
|
- . "$sysconfdir"/sysconfig/libvirt-guests
|
|
+test -f "$sysconfdir"/libvirt/libvirt-guests.conf &&
|
|
+ . "$sysconfdir"/libvirt/libvirt-guests.conf
|
|
|
|
LISTFILE="$localstatedir"/lib/libvirt/libvirt-guests
|
|
-VAR_SUBSYS_LIBVIRT_GUESTS="$localstatedir"/lock/subsys/libvirt-guests
|
|
+VAR_SUBSYS_LIBVIRT_GUESTS="$localstatedir"/lock/libvirt-guests
|
|
|
|
RETVAL=0
|
|
|
|
--
|
|
2.24.1
|
|
|