blob: c9039e37f731f21057cb963a95e7ad2f69d712ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/bash
. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc
. $(dirname $0)/../../snapshot.rc
cleanup;
TEST init_n_bricks 1;
TEST setup_lvm 1;
TEST glusterd;
TEST pidof glusterd;
TEST $CLI volume create $V0 $H0:$L1;
TEST $CLI volume start $V0;
TEST glusterfs --volfile-server=$H0 --volfile-id=$V0 $M0;
TEST $CLI snapshot create snap1 $V0 no-timestamp;
EXPECT "description" get-cmd-field-xml "snapshot info snap1" "description"
cleanup ;
|