From 42b0c3442815c0374735377c7f5ced4fe1a00e97 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Fri, 27 Jun 2014 17:24:16 +0200 Subject: TOOLS: New helper tool sss_signal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A minimal tool whose only purpose is to signal the monitor with SIGUSR2. The tool will be executed by the system bus in order to provide system activation, so it's packaged in libexec. Reviewed-by: Pavel Březina --- Makefile.am | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 7574f9d5b..a678a2590 100644 --- a/Makefile.am +++ b/Makefile.am @@ -99,7 +99,9 @@ sssdlibexec_PROGRAMS = \ sssd_be \ krb5_child \ ldap_child \ - proxy_child + proxy_child \ + sss_signal \ + $(NULL) if BUILD_SUDO sssdlibexec_PROGRAMS += sssd_sudo endif @@ -934,6 +936,15 @@ sss_seed_LDADD = \ $(TOOLS_LIBS) \ $(SSSD_INTERNAL_LTLIBS) +sss_signal_SOURCES = \ + src/tools/sss_signal.c \ + $(SSSD_TOOLS_OBJ) \ + $(NULL) +sss_signal_LDADD = \ + $(TOOLS_LIBS) \ + $(SSSD_INTERNAL_LTLIBS) \ + $(NULL) + if BUILD_SUDO sss_sudo_cli_SOURCES = \ src/sss_client/common.c \ -- cgit