build: Change bin/default/python -> bin/python symlink to bin/default/python_modules
[samba.git] / source4 / scripting / python / samba / netcmd / vampire.py
1 # Vampire
2 #
3 # Copyright Jelmer Vernooij 2010 <jelmer@samba.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19 import samba.getopt as options
20
21 from samba.net import Net
22
23 from samba.netcmd import (
24     Command,
25     Option,
26     SuperCommand,
27     CommandError
28     )
29
30
31 class cmd_vampire(Command):
32     """Join and synchronise a remote AD domain to the local server."""
33     synopsis = "%prog [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         Option("--force", help="force run", action='store_true', default=False),
44         ]
45
46     takes_args = ["domain"]
47
48     def run(self, domain, target_dir=None, credopts=None, sambaopts=None, versionopts=None, force=False):
49         if not force:
50             raise CommandError("samba-tool vampire is deprecated, please use samba-tool domain join. Use --force to override")
51         lp = sambaopts.get_loadparm()
52         creds = credopts.get_credentials(lp)
53         net = Net(creds, lp, server=credopts.ipaddress)
54         (domain_name, domain_sid) = net.vampire(domain=domain, target_dir=target_dir)
55         self.outf.write("Vampired domain %s (%s)\n" % (domain_name, domain_sid))