Displaying 2 results from an estimated 2 matches for "wdog_pig".
Did you mean:
wdog_pid
2007 Jan 28
1
Bug#408739: xen-utils-common: xendomans script sets WDOG_PID and then references WDOG_PIG
Package: xen-utils-common
Version: 3.0.3-0-2
Severity: normal
While reviewing the contents of /etc/init.d/xendomains, I noticed that
the script sets a variable named WDOG_PID but later references an
uninitialized variable named WDOG_PIG. I'm not sure how much this
impairs the behavior of Xen, so I left the severity at "normal". See
below for a simple patch:
--- xendomains.orig 2007-01-27 18:42:02.000000000 -0600
+++ xendomains 2007-01-27 18:42:22.000000000 -0600
@@ -305,9 +305,9 @@
if test $? -ne...
2006 Dec 13
1
Bug#402974: xen-utils-common: xen domain do not always shutdown
...chdog_xm shutdown &
WDOG_PID=$!
- xm shutdown $id $XENDOMAINS_SHUTDOWN
+ xm shutdown $id $XENDOMAINS_SHUTDOWN > /dev/null
if test $? -ne 0; then
rc_failed $?
echo -n '!'
fi
kill $WDOG_PIG >/dev/null 2>&1
fi
- done < <(xm list | grep -v '^Name')
+ done < <(xm_list | grep -v '^Name')
# NB. this shuts down ALL Xen domains (politely), not just the ones in
# AUTODIR/*
-- System Information:
Debian Release: 4.0
APT pr...