aea1d5c0ca9bb1470759b024c8b97b6c1f577193 |
|
27-Jun-2016 |
Pavel Březina <pbrezina@redhat.com> |
sss_tools: add test if sssd is running
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> |
98dbaea0a00c60972b991755a44c51964dfb7877 |
|
11-May-2016 |
Stephen Gallagher <sgallagh@redhat.com> |
Internal: Rename CONFDB_DEFAULT_CONFIG_FILE
New name is SSSD_CONFIG_FILE. This is done because we will start to
ship a static default configuration in addition to the runtime
configuration.
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> |
877b92e80bde510d5cd9f03dbf01e2bcf73ab072 |
|
23-Oct-2015 |
Michal Židek <mzidek@redhat.com> |
util: Update get_next_domain's interface
Update get next domain to be able to
include disbled domains and change the
interface to accept flags instead of
multiple booleans.
Ticket:
https://fedorahosted.org/sssd/ticket/2673
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> |
b6db8fe1d18bffd600899c8e02f4cea83d70e447 |
|
02-Dec-2014 |
Lukas Slebodnik <lslebodn@redhat.com> |
TOOLS: sss_debuglevel should worh with ifp responder
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> |
6b57784f0f175275fd900eca21c77415e3a5ea52 |
|
09-Jul-2014 |
Jakub Hrozek <jhrozek@redhat.com> |
TOOLS: Always debug to stderr
https://fedorahosted.org/sssd/ticket/2348
Programs that are supposed to only be executed on the foreground should
log to stderr automatically.
Reviewed-by: Michal Židek <mzidek@redhat.com> |
a3c8390d19593b1e5277d95bfb4ab206d4785150 |
|
12-Feb-2014 |
Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> |
Make DEBUG macro invocations variadic
Use a script to update DEBUG macro invocations to use it as a variadic
macro, supplying format string and its arguments directly, instead of
wrapping them in parens.
This script was used to update the code:
grep -rwl --include '*.[hc]' DEBUG . |
while read f; do
mv "$f"{,.orig}
perl -e \
'use strict;
use File::Slurp;
my $text=read_file(\*STDIN);
$text=~s#(\bDEBUG\s*\([^(]+)\((.*?)\)\s*\)\s*;#$1$2);#gs;
print $text;' < "$f.orig" > "$f"
rm "$f.orig"
done
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Reviewed-by: Stephen Gallagher <sgallagh@redhat.com>
Reviewed-by: Simo Sorce <simo@redhat.com> |
f7257ab0bcea6c41fab5a4677787f3075ecdcb64 |
|
04-Nov-2013 |
Pavel Reichl <pavel.reichl@redhat.com> |
Include ext headers with #include <foo.h> - cont
Changing style of including header files from outside of sssd tree - from "header.h" to <header.h> |
943109edd1f6545f7d45d619f631b5d03c5c859b |
|
19-Jul-2013 |
Ondrej Kos <okos@redhat.com> |
TOOLS: Update all services with sss_debuglevel
https://fedorahosted.org/sssd/ticket/2007
PAC, SSH, SUDO and AUTOFS services' debug levels weren't modified when
sss_debuglevel tool was used. |
0232747f04b650796db56fd7b487aee8a96fab03 |
|
10-Feb-2013 |
Simo Sorce <simo@redhat.com> |
Add function get_next_domain()
Use this function instead of explicitly calling domain->next
This function allows to get the next primary domain or to descend into the
subdomains and replaces also get_next_dom_or_subdom() |
9e2c64c6d4f5560e27207193efea6536a566865e |
|
29-Oct-2012 |
Michal Zidek <mzidek@redhat.com> |
Include talloc log in our debug facility
https://fedorahosted.org/sssd/ticket/1495 |
31ddfc3c183054ca17b9c9f8f03ea8151db3b5b1 |
|
16-Oct-2012 |
Michal Zidek <mzidek@redhat.com> |
sss_debuglevel: Multiple arguments are treated as error.
https://fedorahosted.org/sssd/ticket/1327 |
7c2e91ac48b20e6699d5c98c9912ea6427453c95 |
|
24-Sep-2012 |
Michal Zidek <mzidek@redhat.com> |
tools_util.h provides signal_sssd function. |
2e1b46d7acb03b22b27bbad2816b996db629d609 |
|
03-Aug-2012 |
Michal Zidek <mzidek@redhat.com> |
Return value of fread in src/tools/sss_debuglevel.c no longer ignored.
https://fedorahosted.org/sssd/ticket/1426 |
3353308213d623b2ad0f0044859039c0f8cb7ef5 |
|
03-May-2012 |
Jakub Hrozek <jhrozek@redhat.com> |
SSS_DEBUGLEVEL: silence analyzer warnings
Errno was returned instead of ret.
The other hunk removes return code from fread - it is not needed, the
NULL termination of the string is ensured by initializing the buffer. |
db6aabf673b5d4d12af00ab1d0ab8a56d7dc7aee |
|
02-Mar-2012 |
Pavel Březina <pbrezina@redhat.com> |
Hide --debug option in sss_debuglevel
https://fedorahosted.org/sssd/ticket/1224 |
41a327ad9a5a5ebfdba05355b6afec6664b78a7b |
|
14-Oct-2011 |
Stephen Gallagher <sgallagh@redhat.com> |
TOOLS: Do not leak pid_file handle on error
Coverity 11032 |
95d3cb8d4ff2e3e8fdc186f2ebf617fd29ddfdec |
|
03-Oct-2011 |
Jakub Hrozek <jhrozek@redhat.com> |
Use explicit base 10 for converting strings to integers
https://fedorahosted.org/sssd/ticket/1013 |
4a6a5421113ab662a665c62ed6a24b61a5a36950 |
|
28-Sep-2011 |
Jakub Hrozek <jhrozek@redhat.com> |
Multiline macro cleanup
This is mostly a cosmetic patch.
The purpose of wrapping a multi-line macro in a do { } while(0) is to
make the macro usable as a regular statement, not a compound statement.
When the while(0) is terminated with a semicolon, the do { } while(0);
block becomes a compound statement again. |
f1828234a850dd28465425248a83a993f262918f |
|
06-Sep-2011 |
Pavel Březina <pbrezina@redhat.com> |
sss_debuglevel - change the debug levels on the fly
https://fedorahosted.org/sssd/ticket/950 |