summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-install/ipa-replica-manage
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2008-10-08 13:31:48 -0600
committerRob Crittenden <rcritten@redhat.com>2008-10-13 14:15:19 -0400
commited6af1f377750d42861d464b5cd2713ed3a77404 (patch)
tree61622ae8494fd54eb5c93263108ab5efe3af21cb /ipa-server/ipa-install/ipa-replica-manage
parentbf0132ecbba3440f924c68db0a5aeb03fa14eb9d (diff)
downloadfreeipa-ed6af1f377750d42861d464b5cd2713ed3a77404.tar.gz
freeipa-ed6af1f377750d42861d464b5cd2713ed3a77404.tar.xz
freeipa-ed6af1f377750d42861d464b5cd2713ed3a77404.zip
add --win-subtree argument to ipa-replica-manage
Diffstat (limited to 'ipa-server/ipa-install/ipa-replica-manage')
-rw-r--r--ipa-server/ipa-install/ipa-replica-manage4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipa-server/ipa-install/ipa-replica-manage b/ipa-server/ipa-install/ipa-replica-manage
index 07f36a98c..8ba4427ba 100644
--- a/ipa-server/ipa-install/ipa-replica-manage
+++ b/ipa-server/ipa-install/ipa-replica-manage
@@ -44,6 +44,8 @@ def parse_options():
help="This is a Windows Sync Agreement")
parser.add_option("--cacert", dest="cacert",
help="Full path and filename of CA certificate to use with TLS/SSL to the remote server")
+ parser.add_option("--win-subtree", dest="win_subtree",
+ help="DN of Windows subtree containing the users you want to sync (default cn=Users,<domain suffix)")
options, args = parser.parse_args()
@@ -108,6 +110,8 @@ def add_master(replman, hostname, options):
other_args['bindpw'] = options.bindpw
if options.cacert:
other_args['cacert'] = options.cacert
+ if options.win_subtree:
+ other_args['win_subtree'] = options.win_subtree
if options.winsync:
other_args['winsync'] = True
if not options.binddn or not options.bindpw or not options.cacert: