blob: 50411b1dbfc4ef5d8b99548bc06b4077feef9e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../snapshot.rc
cleanup;
TEST verify_lvm_version;
TEST glusterd -LDEBUG;
TEST pidof glusterd;
TEST setup_lvm 1
TEST $CLI volume create $V0 $H0:$L1/brick_dir
TEST $CLI volume start $V0
TEST $CLI snapshot create snap1 $V0 no-timestamp
TEST $CLI snapshot delete snap1
TEST $CLI volume stop $V0 force
TEST $CLI volume delete $V0
cleanup
|