diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-04-11 10:20:48 -0400 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-04-13 09:06:49 -0400 |
commit | 4626af1ad1141291f226382f3569e4dd0486cd08 (patch) | |
tree | f35309c400cd028482750e0469db218e6eb02d49 /server/configure.ac | |
parent | c1d6bffe9ba81c265042859dddf3b39be87c161b (diff) | |
download | sssd-4626af1ad1141291f226382f3569e4dd0486cd08.tar.gz sssd-4626af1ad1141291f226382f3569e4dd0486cd08.tar.xz sssd-4626af1ad1141291f226382f3569e4dd0486cd08.zip |
Allow configuration of the SSSD through /etc/sssd/sssd.conf
The SSSD now links with the ini_config and collection libraries
in the common directory.
The monitor will track changes to the /etc/sssd/sssd.conf file
using inotify on platforms that support it, or polled every 5
seconds on platforms that do not.
At startup or modification of the conf file, the monitor will
purge the existing confdb and reread it completely from the conf
file, to ensure that there are no lingering entries. It does this
in a transaction, so there should be no race condition with the
client services.
A new option has been added to the startup options for the SSSD.
It is now possible to specify an alternate config file with the
-c <file> at the command line.
Diffstat (limited to 'server/configure.ac')
-rw-r--r-- | server/configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/configure.ac b/server/configure.ac index b37388027..fade762d4 100644 --- a/server/configure.ac +++ b/server/configure.ac @@ -76,4 +76,6 @@ AC_LIBREPLACE_MDLD AC_LIBREPLACE_MDLD_FLAGS AC_LIBREPLACE_RUNTIME_LIB_PATH_VAR +AC_CHECK_HEADERS([sys/inotify.h]) + AC_OUTPUT(Makefile) |