From time to time I bork my install, and hate it when the initscript
returns no info. This patch makes things a bit more clear.
Signed-off-by: Cole Robinson <crobinso(a)redhat.com>
---
daemon/libvirtd.init.in | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/daemon/libvirtd.init.in b/daemon/libvirtd.init.in
index 071fe2c..c5d4eee 100644
--- a/daemon/libvirtd.init.in
+++ b/daemon/libvirtd.init.in
@@ -32,8 +32,10 @@
# pidfile: @localstatedir(a)/run/libvirtd.pid
#
+LIBVIRTD_BIN="@sbindir@/libvirtd"
+
# Sanity checks.
-[ -x @sbindir@/libvirtd ] || exit 0
+[ ! -e $LIBVIRTD_BIN ] && echo "$LIBVIRTD_BIN not found." &&
exit 1
# Source function library.
. @sysconfdir(a)/rc.d/init.d/functions
--
1.6.5.2