mirror of
https://github.com/samba-team/samba.git
synced 2025-01-21 18:04:06 +03:00
c6cf070df0
The --realm argument is again optional (the previous code would take the default from the default smb.conf, not the one specified) and --targetdir is now a named argument much like it is to provision. We now test the --testparm option to ensure it behaves the way we expect. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Sep 13 16:30:31 CEST 2011 on sn-devel-104
88 lines
2.8 KiB
Bash
Executable File
88 lines
2.8 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: blackbox_s3upgrade.sh PREFIX
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
PREFIX=`pwd`"/$1"
|
|
shift 1
|
|
|
|
samba4bindir="$BINDIR"
|
|
samba_tool="$samba4bindir/samba-tool$EXEEXT"
|
|
testparm="$samba4bindir/testparm$EXEEXT"
|
|
|
|
. `dirname $0`/../../../testprogs/blackbox/subunit.sh
|
|
|
|
rm -rf $PREFIX/samba3-upgrade
|
|
mkdir -p $PREFIX/samba3-upgrade
|
|
cp -a $SRCDIR/testdata/samba3 $PREFIX/samba3-upgrade
|
|
|
|
# Test 1 (s3 member)
|
|
cat - > $PREFIX/samba3-upgrade/samba3/smb1.conf <<EOF
|
|
[global]
|
|
workgroup = SAMBA
|
|
security = user
|
|
netbiosname = S3UPGRADE
|
|
passdb backend = tdbsam:$PREFIX/samba3-upgrade/samba3/passdb.tdb
|
|
private dir = $PREFIX/samba3-upgrade/samba3
|
|
lock directory = $PREFIX/samba3-upgrade/samba3
|
|
state directory = $PREFIX/samba3-upgrade/samba3
|
|
cache directory = $PREFIX/samba3-upgrade/samba3
|
|
pid directory = $PREFIX/samba3-upgrade/samba3
|
|
usershare path = $PREFIX/samba3-upgrade/samba3
|
|
ncalrpc dir = $PREFIX/samba3-upgrade/samba3
|
|
|
|
debug level = 0
|
|
EOF
|
|
|
|
testit "samba3-upgrade-member" $samba_tool domain samba3upgrade $PREFIX/samba3-upgrade/samba3/smb1.conf --targetdir=$PREFIX/samba3-upgrade/s4_1 --libdir=$PREFIX/samba3-upgrade/samba3
|
|
|
|
# Test 2 (s3 dc)
|
|
cat - > $PREFIX/samba3-upgrade/samba3/smb2.conf <<EOF
|
|
[global]
|
|
workgroup = SAMBA
|
|
netbiosname = S3UPGRADE
|
|
security = user
|
|
realm = s3.samba.example.com
|
|
passdb backend = tdbsam:$PREFIX/samba3-upgrade/samba3/passdb.tdb
|
|
private dir = $PREFIX/samba3-upgrade/samba3
|
|
lock directory = $PREFIX/samba3-upgrade/samba3
|
|
state directory = $PREFIX/samba3-upgrade/samba3
|
|
cache directory = $PREFIX/samba3-upgrade/samba3
|
|
pid directory = $PREFIX/samba3-upgrade/samba3
|
|
usershare path = $PREFIX/samba3-upgrade/samba3
|
|
ncalrpc dir = $PREFIX/samba3-upgrade/samba3
|
|
debug level = 0
|
|
domain logons = yes
|
|
EOF
|
|
|
|
testit "samba3-upgrade-dc" $samba_tool domain samba3upgrade $PREFIX/samba3-upgrade/samba3/smb2.conf --targetdir=$PREFIX/samba3-upgrade/s4_2 --libdir=$PREFIX/samba3-upgrade/samba3
|
|
|
|
# Test 3 (s3 dc using testparm hook)
|
|
cat - > $PREFIX/samba3-upgrade/samba3/smb3.conf <<EOF
|
|
[global]
|
|
workgroup = SAMBA
|
|
netbiosname = S3UPGRADE
|
|
security = user
|
|
realm = s3.samba.example.com
|
|
passdb backend = tdbsam:$PREFIX/samba3-upgrade/samba3/passdb.tdb
|
|
private dir = $PREFIX/samba3-upgrade/samba3
|
|
lock directory = $PREFIX/samba3-upgrade/samba3
|
|
state directory = $PREFIX/samba3-upgrade/samba3
|
|
cache directory = $PREFIX/samba3-upgrade/samba3
|
|
pid directory = $PREFIX/samba3-upgrade/samba3
|
|
usershare path = $PREFIX/samba3-upgrade/samba3
|
|
ncalrpc dir = $PREFIX/samba3-upgrade/samba3
|
|
debug level = 0
|
|
domain logons = yes
|
|
EOF
|
|
|
|
testit "samba3-upgrade-testparm" $samba_tool domain samba3upgrade $PREFIX/samba3-upgrade/samba3/smb2.conf --targetdir=$PREFIX/samba3-upgrade/s4_3 --testparm=$testparm
|
|
|
|
rm -rf $PREFIX/samba3-upgrade
|
|
|
|
exit $failed
|