From 1746e8b8399da2a7a8da4aace186f66055ccfec1 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 a5062ed59..05b74141b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -107,7 +107,9 @@ sssdlibexec_PROGRAMS = \ sssd_be \ krb5_child \ ldap_child \ - proxy_child + proxy_child \ + sss_signal \ + $(NULL) if BUILD_SUDO sssdlibexec_PROGRAMS += sssd_sudo endif @@ -1048,6 +1050,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