summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorGiampaolo Lauria <lauria2@yahoo.com>2011-11-01 15:16:53 -0400
committerJelmer Vernooij <jelmer@samba.org>2011-11-03 15:12:27 +0100
commit64e7e448fb476952a02c46a524f13586cea71fae (patch)
treec332cf9fa58d72fab79a4b3608fc17242f8f8209 /source4
parent16437edf487f3159d74fea7caebe84d1c8cc07fe (diff)
downloadsamba-64e7e448fb476952a02c46a524f13586cea71fae.tar.gz
samba-64e7e448fb476952a02c46a524f13586cea71fae.tar.bz2
samba-64e7e448fb476952a02c46a524f13586cea71fae.zip
samba-tool: Fix --quiet option in domain samba3upgrade
--quiet option does not require an argument
Diffstat (limited to 'source4')
-rw-r--r--source4/scripting/python/samba/netcmd/domain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/netcmd/domain.py b/source4/scripting/python/samba/netcmd/domain.py
index 715b376657..8631d992d8 100644
--- a/source4/scripting/python/samba/netcmd/domain.py
+++ b/source4/scripting/python/samba/netcmd/domain.py
@@ -548,7 +548,7 @@ class cmd_domain_samba3upgrade(Command):
help="Path to samba3 testparm utility from the previous installation. This allows the default paths of the previous installation to be followed"),
Option("--targetdir", type="string", metavar="DIR",
help="Path prefix where the new Samba 4.0 AD domain should be initialised"),
- Option("--quiet", help="Be quiet"),
+ Option("--quiet", help="Be quiet", 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"),
]
@@ -556,7 +556,7 @@ class cmd_domain_samba3upgrade(Command):
takes_args = ["smbconf"]
def run(self, smbconf=None, targetdir=None, dbdir=None, testparm=None,
- quiet=None, use_xattrs=None, sambaopts=None, versionopts=None):
+ quiet=False, use_xattrs=None, sambaopts=None, versionopts=None):
if not os.path.exists(smbconf):
raise CommandError("File %s does not exist" % smbconf)