From: Sage Weil Date: Tue, 16 Apr 2013 21:55:08 +0000 (-0700) Subject: pipe 'rbd rm ...' stderr to /dev/null X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=qemu-iotests.git pipe 'rbd rm ...' stderr to /dev/null The rbd progress indicator now goes to stderr; send that to the bit bucket too. Signed-off-by: Sage Weil --- diff --git a/common.rc b/common.rc index 26811ca..08470af 100644 --- a/common.rc +++ b/common.rc @@ -88,7 +88,7 @@ _cleanup_test_img() ;; rbd) - rbd rm $TEST_DIR/t.$IMGFMT > /dev/null + rbd rm $TEST_DIR/t.$IMGFMT >/dev/null 2>/dev/null ;; sheepdog)