blob: f3abee84280534338e06ee725fc327484e00f3b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
# Due to portmap registration NFS takes some time to
# export all volumes. Therefore tests should start only
# after exports are visible by showmount command. This
# routine will check if showmount shows the exports or not
#
function is_nfs_export_available ()
{
vol=$1
if [ "$vol" == "" ]; then
vol=$V0
fi
exp=$(showmount -e 2> /dev/null | grep $vol | wc -l)
echo "$exp"
}
|