blob: eb0a5c81aa1a180147e0fe012b0d146e731cb1f7 (
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
26
27
|
. basicsmb.fns
test_joindomain() {
test_join_domain_password="$1"
echo "$prefix/bin/net rpc join -S localhost -U $whoami%$test_join_domain_password"
$prefix/bin/net rpc join -S localhost -U $whoami%$test_join_domain_password
status=$?
if [ $status = 0 ]; then
echo "'net rpc join' correctly joined the domain"
else
echo "'net rpc join' failed to join the domain! (status $status)"
return 1
fi
return 0
}
password=samba
(test_smb_conf_setup && test_smbpasswd $password ) || exit 1
test_joindomain $password || exit 1
security=DOMAIN
test_listfilesauth $security || exit 1
test_listfilesnpw $security || exit 1
|