socket_wrapper: fix compiler warnings
[Samba/gbeck.git] / source4 / scripting / devel / chgtdcpass
blobdc249834e0021d631f52c1a035b0b36fc79ad343
1 #!/usr/bin/env python
3 # Copyright (C) Matthieu Patou <mat@matws.net> 2010
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 __docformat__ = "restructuredText"
23 import optparse
24 import sys
25 # Allow to run from s4 source directory (without installing samba)
26 sys.path.insert(0, "bin/python")
28 import samba.getopt as options
29 from samba.credentials import DONT_USE_KERBEROS
30 from samba.auth import system_session
31 from samba import param
32 from samba.upgradehelpers import (get_paths,
33 find_provision_key_parameters, get_ldbs,
34 update_machine_account_password)
36 parser = optparse.OptionParser("chgtdcpass [options]")
37 sambaopts = options.SambaOptions(parser)
38 parser.add_option_group(sambaopts)
39 parser.add_option_group(options.VersionOptions(parser))
40 credopts = options.CredentialsOptions(parser)
41 parser.add_option_group(credopts)
43 opts = parser.parse_args()[0]
45 lp = sambaopts.get_loadparm()
46 smbconf = lp.configfile
47 creds = credopts.get_credentials(lp)
48 creds.set_kerberos_state(DONT_USE_KERBEROS)
51 if __name__ == '__main__':
52 paths = get_paths(param, smbconf=smbconf)
53 session = system_session()
55 ldbs = get_ldbs(paths, creds, session, lp)
56 ldbs.startTransactions()
58 names = find_provision_key_parameters(ldbs.sam, ldbs.secrets, ldbs.idmap,
59 paths, smbconf, lp)
61 update_machine_account_password(ldbs.sam, ldbs.secrets, names)
62 ldbs.groupedCommit()