[libvirt] [PATCH] libvirt-guests: status: return non-zero when stopped

Ján Tomko jtomko at redhat.com
Tue Apr 30 11:55:58 UTC 2013


Return 3 when the service is stopped, whether there
are saved guests or not.
---
 tools/libvirt-guests.sh.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/libvirt-guests.sh.in b/tools/libvirt-guests.sh.in
index 4f2e203..261c488 100644
--- a/tools/libvirt-guests.sh.in
+++ b/tools/libvirt-guests.sh.in
@@ -524,10 +524,11 @@ rh_status() {
     else
         if [ -f "$VAR_SUBSYS_LIBVIRT_GUESTS" ]; then
             gettext "started"; echo
+            RETVAL=0
         else
             gettext "stopped, with no saved guests"; echo
+            RETVAL=3
         fi
-        RETVAL=0
     fi
 }
 
-- 
1.8.1.5




More information about the libvir-list mailing list