summaryrefslogtreecommitdiff
path: root/source4/dsdb/config.mk
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-09-11 21:46:58 +1000
committerAndrew Tridgell <tridge@samba.org>2009-09-11 22:13:45 +1000
commit61facf426691cc896ec61fde1c4cb7d947adb07b (patch)
tree8e44d7aa5e879a1ab6b69e0d1c4c8bb09a387330 /source4/dsdb/config.mk
parentfd3a77839cf747ce884cbd4e1cc212f22c4836a2 (diff)
downloadsamba-61facf426691cc896ec61fde1c4cb7d947adb07b.tar.gz
samba-61facf426691cc896ec61fde1c4cb7d947adb07b.tar.bz2
samba-61facf426691cc896ec61fde1c4cb7d947adb07b.zip
s4-kcc: add a very simple KCC
A KCC is a 'Knowledge Consistency Checker', a fancy name for a daemon that works out who will replicate with who in a AD domain. This implements an extremely simple KCC task that just wants to replicate with everyone :-)
Diffstat (limited to 'source4/dsdb/config.mk')
-rw-r--r--source4/dsdb/config.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/source4/dsdb/config.mk b/source4/dsdb/config.mk
index 2a9f70fdb5..eb26f5b433 100644
--- a/source4/dsdb/config.mk
+++ b/source4/dsdb/config.mk
@@ -65,3 +65,21 @@ DREPL_SRV_OBJ_FILES = $(addprefix $(dsdbsrcdir)/repl/, \
drepl_out_helpers.o)
$(eval $(call proto_header_template,$(dsdbsrcdir)/repl/drepl_service_proto.h,$(DREPL_SRV_OBJ_FILES:.o=.c)))
+
+#######################
+# Start SUBSYSTEM KCC_SRV
+[MODULE::KCC_SRV]
+INIT_FUNCTION = server_service_kcc_init
+SUBSYSTEM = service
+PRIVATE_DEPENDENCIES = \
+ SAMDB \
+ process_model \
+ RPC_NDR_DRSUAPI
+# End SUBSYSTEM KCC_SRV
+#######################
+
+KCC_SRV_OBJ_FILES = $(addprefix $(dsdbsrcdir)/kcc/, \
+ kcc_service.o \
+ kcc_periodic.o)
+
+$(eval $(call proto_header_template,$(dsdbsrcdir)/kcc/kcc_service_proto.h,$(KCC_SRV_OBJ_FILES:.o=.c)))