s4:net utility - make outprinted description comments more consistent
[metze/samba/wip.git] / source4 / scripting / python / samba / netcmd / vampire.py
1 #!/usr/bin/python
2 #
3 # Vampire
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     Option,
28     SuperCommand,
29     )
30
31 class cmd_vampire(Command):
32     """Join and synchronise a remote AD domain to the local server [server connection needed]"""
33     synopsis = "%prog vampire [options] <domain>"
34
35     takes_optiongroups = {
36         "sambaopts": options.SambaOptions,
37         "credopts": options.CredentialsOptions,
38         "versionopts": options.VersionOptions,
39         }
40
41     takes_options = [
42         Option("--target-dir", help="Target directory.", type=str),
43         ]
44
45     takes_args = ["domain"]
46
47     def run(self, domain, target_dir=None, credopts=None, sambaopts=None, versionopts=None):
48         lp = sambaopts.get_loadparm()
49         creds = credopts.get_credentials(lp)
50         net = Net(creds, lp)
51         (domain_name, domain_sid) = net.vampire(domain=domain, target_dir=target_dir)
52         self.outf.write("Vampired domain %s (%s)\n" % (domain_name, domain_sid))