From 5d0d239d1ab826c91839a603f93d2c0061658888 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 27 May 2008 16:20:18 +1000 Subject: Start an 'NTP signing server' in Samba4. I am modifying the ntp.org server to talk to this service, to sign packets per MS-SNTP. Andrew Bartlett (This used to be commit 0c15385e6068d2f70ff11aa5837adbd6d78410ae) --- source4/ntp_signd/config.mk | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 source4/ntp_signd/config.mk (limited to 'source4/ntp_signd/config.mk') diff --git a/source4/ntp_signd/config.mk b/source4/ntp_signd/config.mk new file mode 100644 index 0000000000..e8d0530f62 --- /dev/null +++ b/source4/ntp_signd/config.mk @@ -0,0 +1,14 @@ +# NTP_SIGND server subsystem + +####################### +# Start SUBSYSTEM NTP_signd +[MODULE::NTP_SIGND] +INIT_FUNCTION = server_service_ntp_signd_init +SUBSYSTEM = smbd +PRIVATE_DEPENDENCIES = \ + SAMDB NDR_NTP_SIGND +# End SUBSYSTEM NTP_SIGND +####################### + +NTP_SIGND_OBJ_FILES = $(addprefix $(ntp_signd_srcdir)/, ntp_signd.o) + -- cgit From baa2dffdf34c2f3aa150695c60742d616eeb3b09 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 28 May 2008 13:21:26 +1000 Subject: Bring up the ntp signing deamon This starts ntp_signd at startup, and fixes some build issues. Andrew Bartlett (This used to be commit cb0dcd5c3dfe2a46755270a4594b7289f555d814) --- source4/ntp_signd/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/ntp_signd/config.mk') diff --git a/source4/ntp_signd/config.mk b/source4/ntp_signd/config.mk index e8d0530f62..96e0de5583 100644 --- a/source4/ntp_signd/config.mk +++ b/source4/ntp_signd/config.mk @@ -10,5 +10,5 @@ PRIVATE_DEPENDENCIES = \ # End SUBSYSTEM NTP_SIGND ####################### -NTP_SIGND_OBJ_FILES = $(addprefix $(ntp_signd_srcdir)/, ntp_signd.o) +NTP_SIGND_OBJ_FILES = $(addprefix $(ntp_signdsrcdir)/, ntp_signd.o) -- cgit