s3-selftest: introduce registry upgrade test
[Samba/gebeck_regimport.git] / source4 / scripting / bin / samba-tool
blobc4ea8141666ca70c771954d1800a911aa08f54d2
1 #!/usr/bin/env python
3 # Unix SMB/CIFS implementation.
4 # Copyright (C) Amitay Isaacs <amitay@gmail.com> 2011
5 # Copyright (C) Giampaolo Lauria <lauria2@yahoo.com> 2011
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 import sys
23 # Find right direction when running from source tree
24 sys.path.insert(0, "bin/python")
26 from samba.netcmd.main import cmd_sambatool
27 cmd = cmd_sambatool()
28 subcommand = None
29 args = ()
31 if len(sys.argv) > 1:
32 subcommand = sys.argv[1]
33 if len(sys.argv) > 2:
34 args = sys.argv[2:]
36 try:
37 retval = cmd._run("samba-tool", subcommand, *args)
38 except SystemExit, e:
39 retval = -1
40 except Exception, e:
41 cmd.show_command_error(e)
42 retval = 1
43 sys.exit(retval)