Lines Matching +full:emc +full:- +full:cfg +full:- +full:2
4 # Copyright (c) 2016 EMC Corp.
12 # 2. Redistributions in binary form must reproduce the above copyright
35 [ -z "$footshoot" ] && exit 0
37 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
39 . ../default.cfg
41 [ -z "$nfs_export" ] && exit 0
42 ping -c 2 `echo $nfs_export | sed 's/:.*//'` > /dev/null 2>&1 ||
45 if=`ifconfig -lu | awk '{print $1}'`
46 [ -z "$if" ] && exit 0
48 [ ! -d $mntpoint ] && mkdir $mntpoint
49 mount | grep "on $mntpoint " | grep -q nfs && umount $mntpoint
50 mount -t nfs -o tcp -o retrycnt=3 -o soft \
51 -o rw $nfs_export $mntpoint
54 export RUNDIR=$mntpoint/nfs14.`jot -rc 8 a z | tr -d '\n'`/stressX
55 rm -rf $RUNDIR
56 mkdir -p $RUNDIR
59 rm -rf /tmp/stressX.control/*
61 su $testuser -c '(cd ..; ./run.sh rw.cfg) > /dev/null 2>&1' &
63 sleep `jot -r 1 5 15`.`jot -r 1 1 9`
64 downtime=`jot -r 1 100 150`
69 rm -rf $RUNDIR
70 while mount | grep -q $mntpoint; do
71 umount -f $mntpoint > /dev/null 2>&1