mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
705e65c16e
Signed-off-by: Rob van der Linde <rob@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
65 lines
2.8 KiB
Python
65 lines
2.8 KiB
Python
# domain management - common code
|
|
#
|
|
# Copyright Matthias Dieter Wallnoefer 2009
|
|
# Copyright Andrew Kroeger 2009
|
|
# Copyright Jelmer Vernooij 2007-2012
|
|
# Copyright Giampaolo Lauria 2011
|
|
# Copyright Matthieu Patou <mat@matws.net> 2011
|
|
# Copyright Andrew Bartlett 2008-2015
|
|
# Copyright Stefan Metzmacher 2012
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
from samba.netcmd import Option
|
|
from samba.samdb import get_default_backend_store
|
|
|
|
common_ntvfs_options = [
|
|
Option("--use-ntvfs", help="Use NTVFS for the fileserver (default = no)",
|
|
action="store_true")
|
|
]
|
|
|
|
common_provision_join_options = [
|
|
Option("--machinepass", type="string", metavar="PASSWORD",
|
|
help="choose machine password (otherwise random)"),
|
|
Option("--plaintext-secrets", action="store_true",
|
|
help="Store secret/sensitive values as plain text on disk" +
|
|
"(default is to encrypt secret/sensitive values)"),
|
|
Option("--backend-store", type="choice", metavar="BACKENDSTORE",
|
|
choices=["tdb", "mdb"],
|
|
help="Specify the database backend to be used "
|
|
"(default is %s)" % get_default_backend_store()),
|
|
Option("--backend-store-size", type="bytes", metavar="SIZE",
|
|
help="Specify the size of the backend database, currently only " +
|
|
"supported by lmdb backends (default is 8 Gb)."),
|
|
Option("--targetdir", metavar="DIR",
|
|
help="Set target directory (where to store provision)", type=str),
|
|
Option("-q", "--quiet", help="Be quiet", action="store_true"),
|
|
]
|
|
|
|
common_join_options = [
|
|
Option("--server", help="DC to join", type=str),
|
|
Option("--site", help="site to join", type=str),
|
|
Option("--domain-critical-only",
|
|
help="only replicate critical domain objects",
|
|
action="store_true"),
|
|
Option("--dns-backend", type="choice", metavar="NAMESERVER-BACKEND",
|
|
choices=["SAMBA_INTERNAL", "BIND9_DLZ", "NONE"],
|
|
help="The DNS server backend. SAMBA_INTERNAL is the builtin name server (default), "
|
|
"BIND9_DLZ uses samba4 AD to store zone information, "
|
|
"NONE skips the DNS setup entirely (this DC will not be a DNS server)",
|
|
default="SAMBA_INTERNAL"),
|
|
Option("-v", "--verbose", help="Be verbose", action="store_true")
|
|
]
|