mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
9817f3d785
This makes it easy to set the expiry (or no expiry) for a samdb user
(This used to be commit 25171f18a4
)
33 lines
890 B
Bash
Executable File
33 lines
890 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: blackbox_newuser.sh PREFIX
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
PREFIX="$1"
|
|
shift 1
|
|
|
|
. `dirname $0`/../../../testprogs/blackbox/subunit.sh
|
|
|
|
|
|
testit "simple-dc" $PYTHON ./setup/provision --server-role="dc" --domain=FOO --realm=foo.example.com --domain-sid=S-1-5-21-4177067393-1453636373-93818738 --targetdir=$PREFIX/simple-dc
|
|
|
|
CONFIG="--configfile=$PREFIX/simple-dc/etc/smb.conf"
|
|
|
|
testit "newuser" $PYTHON ./setup/newuser $CONFIG testuser testpass
|
|
|
|
# check the enable account script
|
|
testit "enableaccount" $PYTHON ./setup/enableaccount $CONFIG testuser
|
|
|
|
# check the enable account script
|
|
testit "setpassword" $PYTHON ./setup/setpassword $CONFIG testuser --newpassword=testpass2
|
|
|
|
# check the setexpiry script
|
|
testit "noexpiry" $PYTHON ./setup/setexpiry $CONFIG testuser --noexpiry
|
|
testit "expiry" $PYTHON ./setup/setexpiry $CONFIG testuser --days=7
|
|
|
|
exit $failed
|