From 8e1d94778702ac2ab18983abac630957d8782cf6 Mon Sep 17 00:00:00 2001 From: Fernando J V da Silva Date: Wed, 24 Mar 2010 13:02:36 -0300 Subject: [PATCH] s4-drs: If we are a RODC then do not send DSReplicaSync messages --- source4/dsdb/repl/drepl_service.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/source4/dsdb/repl/drepl_service.c b/source4/dsdb/repl/drepl_service.c index 3ed588566fa..4196f942340 100644 --- a/source4/dsdb/repl/drepl_service.c +++ b/source4/dsdb/repl/drepl_service.c @@ -193,14 +193,17 @@ static void dreplsrv_task_init(struct task_server *task) return; } - service->notify.interval = lp_parm_int(task->lp_ctx, NULL, "dreplsrv", - "notify_interval", 5); /* in seconds */ - status = dreplsrv_notify_schedule(service, service->notify.interval); - if (!W_ERROR_IS_OK(status)) { - task_server_terminate(task, talloc_asprintf(task, - "dreplsrv: Failed to setup notify schedule: %s\n", - win_errstr(status)), true); - return; + /* if we are a RODC then we do not send DSReplicaSync*/ + if (!samdb_rodc(service->samdb)) { + service->notify.interval = lp_parm_int(task->lp_ctx, NULL, "dreplsrv", + "notify_interval", 5); /* in seconds */ + status = dreplsrv_notify_schedule(service, service->notify.interval); + if (!W_ERROR_IS_OK(status)) { + task_server_terminate(task, talloc_asprintf(task, + "dreplsrv: Failed to setup notify schedule: %s\n", + win_errstr(status)), true); + return; + } } irpc_add_name(task->msg_ctx, "dreplsrv"); -- 2.34.1