1dedfbb334
Resolves: upstream#3588 - sssd_nss consumes more memory until restarted or machine swaps Resolves: failure in glibc tests https://sourceware.org/bugzilla/show_bug.cgi?id=22530 Resolves: upstream#3451 - When sssd is configured with id_provider proxy and auth_provider ldap, login fails if the LDAP server is not allowing anonymous binds Resolves: upstream#3285 - SSSD needs restart after incorrect clock is corrected with AD Resolves: upstream#3586 - Give a more detailed debug and system-log message if krb5_init_context() failed Resolves: rhbz#1431153 - SSSD ships a drop-in configuration snippet in /etc/systemd/system Backport few upstream features from 1.16.1
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 58932b42802c93fdfc3eea8cdcdcca4534293941 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= <fidencio@redhat.com>
|
|
Date: Wed, 8 Nov 2017 17:59:15 +0100
|
|
Subject: [PATCH 40/79] TOOLS: Call "exec" for sss_debuglevel
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This suggestion came from Lukáš Slebodník. The advantage of calling
|
|
"exec" is to avoid forking another child of the process.
|
|
|
|
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
|
|
|
|
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
|
|
---
|
|
src/tools/wrappers/sss_debuglevel.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/tools/wrappers/sss_debuglevel.in b/src/tools/wrappers/sss_debuglevel.in
|
|
index aa19f790a26c67186123c87675d527f403b06264..a55afcddc547dfda4ac0a7e22da5f9f9407fe45f 100644
|
|
--- a/src/tools/wrappers/sss_debuglevel.in
|
|
+++ b/src/tools/wrappers/sss_debuglevel.in
|
|
@@ -1,4 +1,4 @@
|
|
#!/bin/sh
|
|
sbindir=@sbindir@
|
|
echo "Redirecting to $sbindir/sssctl debug-level" >&2
|
|
-$sbindir/sssctl debug-level "$@"
|
|
+exec $sbindir/sssctl debug-level "$@"
|
|
--
|
|
2.15.1
|
|
|