summaryrefslogtreecommitdiffstats
path: root/dvm/2501/testcase
blob: 63561c568eb061aa3d97ef64490684f9b4bbe1ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

source ./regression_helpers

VOLNAME="vol$global_bug_id";

$GLUSTERFSDIR/gluster volume create $VOLNAME $(hostname):$EXPORT_DIR/$global_bug_id/export1 2>/dev/null 1>/dev/null;

$GLUSTERFSDIR/gluster volume start $VOLNAME 2>/dev/null 1>/dev/null;

$GLUSTERFSDIR/gluster volume set $VOLNAME mem-factor 20 2>/dev/null 1>/dev/null;

$GLUSTERFSDIR/gluster volume info $VOLNAME | grep -i "nfs.mem-factor: 20" 2>/dev/null 1>/dev/null;


exit $?;