[Pkg-xen-changes] r132 - trunk/xen-3.0/debian

Guido Trotter ultrotter at costa.debian.org
Wed Mar 22 06:21:32 UTC 2006


Author: ultrotter
Date: 2006-03-22 06:21:31 +0000 (Wed, 22 Mar 2006)
New Revision: 132

Modified:
   trunk/xen-3.0/debian/xen-utils-3.0.postinst
Log:
Wops... wrong boolean expression! Yesterday I was a bit sleepy! ;)


Modified: trunk/xen-3.0/debian/xen-utils-3.0.postinst
===================================================================
--- trunk/xen-3.0/debian/xen-utils-3.0.postinst	2006-03-21 20:36:42 UTC (rev 131)
+++ trunk/xen-3.0/debian/xen-utils-3.0.postinst	2006-03-22 06:21:31 UTC (rev 132)
@@ -15,7 +15,7 @@
 	update-rc.d xendomains start 21 2 3 4 5 . stop 20 0 1 6 .
 	invoke-rc.d xend start || true
 	# Only start xendomains if we're installing from scratch, not if we are upgrading an existing installation
-	if [ ! -z "$2" ]; then
+	if [ -z "$2" ]; then
 		invoke-rc.d xendomains start || true
 	fi
 	;;




More information about the Pkg-xen-changes mailing list