blob: 4ba445a17e31d9aacc945830e93573188fb76f2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
. basicsmb.fns
test_listfilesguestshare() {
remote_name=$1
echo $prefix/bin/smbclient //$remote_name/guest_share -n buildclient -U$whoami% -c 'ls'
$prefix/bin/smbclient //$remote_name/guest_share -n buildclient -U$whoami% -c 'ls'
status=$?
if [ $status = 0 ]; then
echo "smbd listed files correctly (guest share)"
else
echo "listing files on a guest share failed with status $status"
return 1
fi
return 0
}
security=SHARE
( test_smb_conf_setup ) || exit 1
( test_listfilesguestshare $security ) || exit 1
|