08fa4bf8dfc4949fdf49f8b8b26e131dffdb502c
[nivanova/samba-autobuild/.git] / source4 / scripting / python / samba / netcmd / export.py
1 #!/usr/bin/python
2 #
3 # Export keytab
4 #
5 # Copyright Jelmer Vernooij 2010 <jelmer@samba.org>
6 #
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.
11 #
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.
16 #
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/>.
19 #
20
21 import samba.getopt as options
22
23 from samba.net import Net
24
25 from samba.netcmd import (
26     Command,
27     SuperCommand,
28     )
29
30 class cmd_export_keytab(Command):
31     """Dumps kerberos keys of the domain into a keytab"""
32     synopsis = "%prog export keytab <keytab>"
33
34     takes_optiongroups = {
35         "sambaopts": options.SambaOptions,
36         "credopts": options.CredentialsOptions,
37         "versionopts": options.VersionOptions,
38         }
39
40     takes_options = [
41         ]
42
43     takes_args = ["keytab"]
44
45     def run(self, keytab, credopts=None, sambaopts=None, versionopts=None):
46         lp = sambaopts.get_loadparm()
47         creds = credopts.get_credentials(lp)
48         net = Net(creds, lp)
49         net.export_keytab(keytab=keytab)
50
51
52 class cmd_export(SuperCommand):
53     """Dumps the sam of the domain we are joined to [server connection needed]"""
54
55     subcommands = {}
56     subcommands["keytab"] = cmd_export_keytab()
57