chiark / gitweb /
* Really discard stderr from our ought-to-be-unnecessary
authorIan Jackson <ian@liberator>
Thu, 12 Jul 2007 12:46:13 +0000 (13:46 +0100)
committerIan Jackson <ian@liberator>
Thu, 12 Jul 2007 12:46:13 +0000 (13:46 +0100)
  modprobe dm-snapshot.

debian/changelog
xen/with-testbed

index 8364a4fb46c9911e4042f56c245bf805b17c82b2..63db39e00476a866c36be2edb12468d94fac8763 100644 (file)
@@ -1,3 +1,10 @@
+autopkgtest (0.9.2) unstable; urgency=low
+
+  * Really discard stderr from our ought-to-be-unnecessary
+    modprobe dm-snapshot.
+
+ --
+
 autopkgtest (0.9.1) gutsy; urgency=low
 
   * autopkgtest-xenlvm declares that it Depends on dmsetup.
index 32c831152cb6e135f54431183949935457a61f3e..c472cd0eed09fd1856af61db12058ed610bbf23c 100755 (executable)
@@ -7,7 +7,7 @@ while test $# -gt $nonoptargs; do shift; done
 
 ${ADT_XENLVM_SHARE}/cleanup >/dev/null
 
-modprobe dm-snapshot 2>&1 ||:
+modprobe dm-snapshot >/dev/null 2>&1 ||:
 
 bdsize=$(blockdev --getsize $lvm_baselv_namepath)
 dmsetup create $adt_devmapper_cowdev <<END