summaryrefslogtreecommitdiffstats
path: root/tests/bugs/snapshot/bug-1178079.t
blob: a1a6b0b9d4981d7d37fae9a8e79df63256c37397 (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
#!/bin/bash

. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc

cleanup;

#Create a volume
TEST glusterd;
TEST pidof glusterd;
TEST $CLI volume info;

TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{1..2};
TEST $CLI volume start $V0;

TEST $CLI volume set $V0 features.uss on;

TEST glusterfs -s $H0 --volfile-id $V0 $M0;

TEST touch $M0/file;

TEST getfattr -d -m . -e hex $M0/file;

cleanup;