diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-06-18 12:38:04 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-06-18 13:49:30 +1000 |
commit | 1e6fb7d7306ee64ac649afe235e452ac116de394 (patch) | |
tree | 51e4668a33d4aff3fa3529ef477e210bd1d950f3 /source4/setup/setpassword | |
parent | 033e25fdcea93763e1e8fe295fb6d2c3d261bcc4 (diff) | |
download | samba-1e6fb7d7306ee64ac649afe235e452ac116de394.tar.gz samba-1e6fb7d7306ee64ac649afe235e452ac116de394.tar.bz2 samba-1e6fb7d7306ee64ac649afe235e452ac116de394.zip |
s4: Add tests and 'must change password' flags in setpassword and newuser
In particular, ensure that we can acutally change the password under
these circumstances.
Andrew Bartlett
Diffstat (limited to 'source4/setup/setpassword')
-rwxr-xr-x | source4/setup/setpassword | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/setup/setpassword b/source4/setup/setpassword index d44f143e63..77d97d8918 100755 --- a/source4/setup/setpassword +++ b/source4/setup/setpassword @@ -75,5 +75,5 @@ creds = credopts.get_credentials(lp) samdb = SamDB(url=lp.get("sam database"), session_info=system_session(), credentials=creds, lp=lp) -samdb.setpassword(filter, password, must_change_at_next_login=opts.must_change_at_next_login) +samdb.setpassword(filter, password, force_password_change_at_next_login=opts.must_change_at_next_login) |