summaryrefslogtreecommitdiff
path: root/source3/script/tests/t_001.sh
blob: 77b023c4c498fd00e34943c847b1afe4bde639e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

. $SCRIPTDIR/functions

cat >$CONFFILE<<EOF
[global]
	include = $LIBDIR/common.conf

[test]
	path = $TMPDIR
	read only = no
EOF

##
## Test code 
##

start_smbd || exit $?

smbclient $CONFIGURATION -L localhost -N -p 139
ret=$?

stop_smbd

exit $ret