]> git.proxmox.com Git - ceph.git/blame - ceph/qa/workunits/rgw/run-versioning.sh
update ceph source to reef 18.2.0
[ceph.git] / ceph / qa / workunits / rgw / run-versioning.sh
CommitLineData
05a536ef
TL
1#!/usr/bin/env bash
2set -ex
3
4# assume working ceph environment (radosgw-admin in path) and rgw on localhost:80
5# localhost::443 for ssl
6
7mydir=`dirname $0`
8
9python3 -m venv $mydir
10source $mydir/bin/activate
11pip install pip --upgrade
12pip install boto3
13
14## run test
15$mydir/bin/python3 $mydir/test_rgw_versioning.py
16
17deactivate
18echo OK.
19