summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/samba/netcmd
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-22 06:58:19 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-22 01:31:57 +0200
commit97b13799ce4786f03602fba8eb6ad5da7023bb5c (patch)
tree7beddc08b0949c871a2c5c375be35fbbef2ef3b9 /source4/scripting/python/samba/netcmd
parentb5c2747cad0f9bbb69cceb4b90aab20546a5cf66 (diff)
downloadsamba-97b13799ce4786f03602fba8eb6ad5da7023bb5c.tar.gz
samba-97b13799ce4786f03602fba8eb6ad5da7023bb5c.tar.xz
samba-97b13799ce4786f03602fba8eb6ad5da7023bb5c.zip
s4-classicupgrade: Add --use-ntvfs option
This is an odd option, but is needed because I wish to add assertions about ACL setting that will not work in make test without the vfs_fake_acls module loaded. Andrew Bartlett
Diffstat (limited to 'source4/scripting/python/samba/netcmd')
-rw-r--r--source4/scripting/python/samba/netcmd/domain.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/netcmd/domain.py b/source4/scripting/python/samba/netcmd/domain.py
index 9791704064..b86f52f0f1 100644
--- a/source4/scripting/python/samba/netcmd/domain.py
+++ b/source4/scripting/python/samba/netcmd/domain.py
@@ -911,6 +911,8 @@ class cmd_domain_classicupgrade(Command):
Option("--verbose", help="Be verbose", action="store_true"),
Option("--use-xattrs", type="choice", choices=["yes","no","auto"], metavar="[yes|no|auto]",
help="Define if we should use the native fs capabilities or a tdb file for storing attributes likes ntacl, auto tries to make an inteligent guess based on the user rights and system capabilities", default="auto"),
+ Option("--use-ntvfs", help="Use NTVFS for the fileserver (default = no)",
+ action="store_true"),
Option("--dns-backend", type="choice", metavar="NAMESERVER-BACKEND",
choices=["SAMBA_INTERNAL", "BIND9_FLATFILE", "BIND9_DLZ", "NONE"],
help="The DNS server backend. SAMBA_INTERNAL is the builtin name server, " \
@@ -924,7 +926,7 @@ class cmd_domain_classicupgrade(Command):
def run(self, smbconf=None, targetdir=None, dbdir=None, testparm=None,
quiet=False, verbose=False, use_xattrs=None, sambaopts=None, versionopts=None,
- dns_backend=None):
+ dns_backend=None, use_ntvfs=False):
if not os.path.exists(smbconf):
raise CommandError("File %s does not exist" % smbconf)
@@ -1008,7 +1010,7 @@ class cmd_domain_classicupgrade(Command):
logger.info("Provisioning")
upgrade_from_samba3(samba3, logger, targetdir, session_info=system_session(),
- useeadb=eadb, dns_backend=dns_backend)
+ useeadb=eadb, dns_backend=dns_backend, use_ntvfs=use_ntvfs)
class cmd_domain(SuperCommand):
"""Domain management"""