/usr/sbin/openchange_provision is in openchangeserver 1:2.2-6+deb8u1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | #! /usr/bin/python
# OpenChange provision script
#
# Copyright (C) Jelmer Vernooij <jelmer@openchange.org> 2008
#
# 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/>.
#
import optparse
import os,sys
# To allow running from the source directory
sys.path.append("python")
import openchange
import samba
import samba.getopt as options
import openchange.provision as openchange
parser = optparse.OptionParser("openchange_provision [options]")
sambaopts = options.SambaOptions(parser)
parser.add_option_group(sambaopts)
credopts = options.CredentialsOptions(parser)
parser.add_option_group(credopts)
parser.add_option("--firstorg", type="string", metavar="FIRSTORG",
default="First Organization",
help="set OpenChange Organization Name (otherwise 'First Organization')")
parser.add_option("--firstou", type="string", metavar="FIRSTOU",
default="First Administrative Group",
help="set OpenChange Administrative Group (otherwise 'First Administrative Group')")
parser.add_option("--standalone", action="store_true", help="Provisioning an standalone OpenChange server")
parser.add_option("--additional", action="store_true", help="Provisioning an additional OpenChange server")
parser.add_option("--primary-server", action="store_true", help="Set this OpenChange server as the primary server")
parser.add_option("--openchangedb", action="store_true", help="Initialize OpenChange dispatcher database")
parser.add_option("--openchangedb-uri", type="string", default="",
help="openchange database destination, by default a ldb file (openchange.ldb) "
"inside samba private directory is used but you can use mysql as backend "
"specifying a connection string like mysql://user:passwd@host/db_name")
parser.add_option("--deprovision", action="store_true", help="Uninstall the Exchange schema and objects from AD")
opts,args = parser.parse_args()
if len(args) != 0:
parser.print_help()
sys.exit(1)
lp = sambaopts.get_loadparm()
creds = credopts.get_credentials(lp)
_setupdir = os.path.dirname(__file__)
if not os.path.exists(os.path.join(_setupdir, "AD")):
_setupdir = samba.param.setup_dir()
def setup_path(*args):
global _setupdir
return os.path.join(_setupdir, *args)
provisionnames = openchange.guess_names_from_smbconf(
lp, creds, opts.firstorg, opts.firstou)
if not opts.openchangedb:
if opts.deprovision:
try:
openchange.unregister(setup_path, provisionnames, lp, creds)
openchange.deprovision(setup_path, provisionnames, lp, creds)
openchange.openchangedb_deprovision(provisionnames, lp)
except openchange.ServerInUseError, e:
print >> sys.stderr, "[!] Unable to unregister this server, it's being used for: %s" % str(e)
sys.exit(1)
elif opts.additional and opts.primary_server:
openchange.register(setup_path, provisionnames, lp, creds)
openchange.registerasmain(setup_path, provisionnames, lp, creds)
elif opts.additional:
openchange.register(setup_path, provisionnames, lp, creds)
elif opts.standalone:
openchange.provision(setup_path, provisionnames, lp, creds)
openchange.register(setup_path, provisionnames, lp, creds)
openchange.registerasmain(setup_path, provisionnames, lp, creds)
elif opts.primary_server:
openchange.registerasmain(setup_path, provisionnames, lp, creds)
else:
parser.print_help()
sys.exit(1)
else:
openchange.openchangedb_provision(provisionnames, lp, opts.openchangedb_uri)
|