diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2010-03-12 16:52:26 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-03-15 07:40:52 -0400 |
commit | e45fcd9e478300e6be8a49402fcea81fce623804 (patch) | |
tree | f13ce827e549ebd3985bc51f3dc9848fb98e4f64 /src/external | |
parent | 5096bb4c2242b426aa6f5ea2cb82223e0b81a345 (diff) | |
download | sssd-e45fcd9e478300e6be8a49402fcea81fce623804.tar.gz sssd-e45fcd9e478300e6be8a49402fcea81fce623804.tar.xz sssd-e45fcd9e478300e6be8a49402fcea81fce623804.zip |
Flush NSCD cache after modifying local database
Fixes: #221
Diffstat (limited to 'src/external')
-rw-r--r-- | src/external/nscd.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/external/nscd.m4 b/src/external/nscd.m4 new file mode 100644 index 000000000..f9f54c582 --- /dev/null +++ b/src/external/nscd.m4 @@ -0,0 +1,9 @@ +AC_PATH_PROG(NSCD, nscd) +AC_MSG_CHECKING(for nscd) +if test -x "$NSCD"; then + AC_DEFINE_UNQUOTED([NSCD_PATH], "$NSCD", [The path to nscd, if available]) + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no. Manipulating nscd cache will not be available.) +fi + |