1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r19168: use the correct configuration

metze
This commit is contained in:
Stefan Metzmacher 2006-10-08 20:17:55 +00:00 committed by Gerald (Jerry) Carter
parent 2f55fd82ff
commit bf90ac567f

View File

@ -24,7 +24,7 @@ test_noninteractive_no_prompt()
prompt="smb"
echo du | \
$SMBCLIENT "$@" -U$USERNAME%$PASSWORD //$SERVER/tmp 2>&1 | \
$SMBCLIENT $CONFIGURATION "$@" -U$USERNAME%$PASSWORD //$SERVER/tmp 2>&1 | \
grep $prompt
if [ $? = 0 ] ; then
@ -48,7 +48,7 @@ quit
EOF
CLI_FORCE_INTERACTIVE=yes \
$SMBCLIENT "$@" -U$USERNAME%$PASSWORD //$SERVER/tmp \
$SMBCLIENT $CONFIGURATION "$@" -U$USERNAME%$PASSWORD //$SERVER/tmp \
< $tmpfile 2>/dev/null | \
grep $prompt
@ -63,8 +63,8 @@ EOF
fi
}
testit "smbclient -L $SERVER_IP" $SMBCLIENT -L $SERVER_IP -N -p 139 || failed=`expr $failed + 1`
testit "smbclient -L $SERVER" $SMBCLIENT -L $SERVER -N -p 139 || failed=`expr $failed + 1`
testit "smbclient -L $SERVER_IP" $SMBCLIENT $CONFIGURATION -L $SERVER_IP -N -p 139 || failed=`expr $failed + 1`
testit "smbclient -L $SERVER" $SMBCLIENT $CONFIGURATION -L $SERVER -N -p 139 || failed=`expr $failed + 1`
testit "noninteractive smbclient does not prompt" \
test_noninteractive_no_prompt || \