Blob Blame History Raw
--- xen-unstable/tools/examples/init.d/xend.path	2005-09-08 10:41:54.000000000 -0400
+++ xen-unstable/tools/examples/init.d/xend	2005-09-08 10:43:03.000000000 -0400
@@ -16,28 +16,28 @@
 {
 	i=1
 	rets=10
-	xend status
+	/usr/sbin/xend status
 	while [ $? -ne 0 -a $i -lt $rets ]; do
 	    sleep 1
 	    echo -n .
 	    i=$(($i + 1))
-	    xend status
+	    /usr/sbin/xend status
 	done
 }
 
 case "$1" in
   start)
-	xend start
+	/usr/sbin/xend start
 	await_daemons_up
 	;;
   stop)
-	xend stop
+	/usr/sbin/xend stop
 	;;
   status)
-	xend status
+	/usr/sbin/xend status
 	;;
   restart|reload|force-reload)
-	xend restart
+	/usr/sbin/xend restart
 	await_daemons_up
 	;;
   *)