X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fqa%2Fworkunits%2Fceph-disk%2Fceph-disk.sh;fp=src%2Fceph%2Fqa%2Fworkunits%2Fceph-disk%2Fceph-disk.sh;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=7102efba181cd811c3332f5f39ef5abd077546e3;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/qa/workunits/ceph-disk/ceph-disk.sh b/src/ceph/qa/workunits/ceph-disk/ceph-disk.sh deleted file mode 100755 index 7102efb..0000000 --- a/src/ceph/qa/workunits/ceph-disk/ceph-disk.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash -if [ -f $(dirname $0)/../ceph-helpers-root.sh ]; then - source $(dirname $0)/../ceph-helpers-root.sh -else - echo "$(dirname $0)/../ceph-helpers-root.sh does not exist." - exit 1 -fi - -install python-pytest || true -install pytest || true - -# complete the cluster setup done by the teuthology ceph task -sudo chown $(id -u) /etc/ceph/ceph.conf -if ! test -f /etc/ceph/ceph.client.admin.keyring ; then - sudo cp /etc/ceph/ceph.keyring /etc/ceph/ceph.client.admin.keyring -fi -if ! sudo test -f /var/lib/ceph/bootstrap-osd/ceph.keyring ; then - sudo ceph-create-keys --id a -fi -sudo ceph osd crush rm osd.0 || true -sudo ceph osd crush rm osd.1 || true - -sudo cp $(dirname $0)/60-ceph-by-partuuid.rules /lib/udev/rules.d -sudo udevadm control --reload - -perl -pi -e 's|pid file.*|pid file = /var/run/ceph/\$cluster-\$name.pid|' /etc/ceph/ceph.conf - -PATH=$(dirname $0):$(dirname $0)/..:$PATH - -: ${PYTHON:=python} -PY_VERSION=$($PYTHON --version 2>&1) - -if ! ${PYTHON} -m pytest --version > /dev/null 2>&1; then - echo "py.test not installed for ${PY_VERSION}" - exit 1 -fi - -sudo env PATH=$(dirname $0):$(dirname $0)/..:$PATH PYTHONWARNINGS=ignore ${PYTHON} -m pytest -s -v $(dirname $0)/ceph-disk-test.py -result=$? - -sudo rm -f /lib/udev/rules.d/60-ceph-by-partuuid.rules -# own whatever was created as a side effect of the py.test run -# so that it can successfully be removed later on by a non privileged -# process -sudo chown -R $(id -u) $(dirname $0) -exit $result