From: Jason Dillaman Date: Tue, 5 May 2015 15:22:55 +0000 (-0400) Subject: qa/workunits/rbd: add notify_master/slave bootstrap scripts X-Git-Tag: v9.0.2~176^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=124b1d3d2d0dbd685bbd717856d29b316e62e660;p=ceph.git qa/workunits/rbd: add notify_master/slave bootstrap scripts Backport: hammer Signed-off-by: Jason Dillaman --- diff --git a/qa/workunits/rbd/notify_master.sh b/qa/workunits/rbd/notify_master.sh new file mode 100755 index 000000000000..3d1b2243c56c --- /dev/null +++ b/qa/workunits/rbd/notify_master.sh @@ -0,0 +1,7 @@ +#!/bin/sh -ex + +CEPH_REF=${CEPH_REF:-master} +wget -O test_notify.py "https://git.ceph.com/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/librbd/test_notify.py" + +python test_notify.py master +exit 0 diff --git a/qa/workunits/rbd/notify_slave.sh b/qa/workunits/rbd/notify_slave.sh new file mode 100755 index 000000000000..e94894ac5b87 --- /dev/null +++ b/qa/workunits/rbd/notify_slave.sh @@ -0,0 +1,7 @@ +#!/bin/sh -ex + +CEPH_REF=${CEPH_REF:-master} +wget -O test_notify.py "https://git.ceph.com/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/librbd/test_notify.py" + +python test_notify.py slave +exit 0