3 # Copyright Jelmer Vernooij 2010 <jelmer@samba.org>
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.
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.
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/>.
19 import samba
.getopt
as options
21 from samba
.net
import Net
23 from samba
.netcmd
import (
31 class cmd_vampire(Command
):
32 """Join and synchronise a remote AD domain to the local server."""
33 synopsis
= "%prog [options] <domain>"
35 takes_optiongroups
= {
36 "sambaopts": options
.SambaOptions
,
37 "credopts": options
.CredentialsOptions
,
38 "versionopts": options
.VersionOptions
,
42 Option("--target-dir", help="Target directory.", type=str),
43 Option("--force", help="force run", action
='store_true', default
=False),
46 takes_args
= ["domain"]
48 def run(self
, domain
, target_dir
=None, credopts
=None, sambaopts
=None, versionopts
=None, force
=False):
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
))