summaryrefslogtreecommitdiffstats
path: root/src/conf_macros.m4
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2017-02-21 16:34:45 +0100
committerLukas Slebodnik <lslebodn@redhat.com>2017-02-27 19:14:15 +0100
commit78bb3676fe8326e0fe2b60daad8bf524e4625d4e (patch)
tree180f873e99228f72b5cfdfbb58cf7b5e1ab240ee /src/conf_macros.m4
parenteed5bc53a0c823276523d32e76bc1c264db3837e (diff)
downloadsssd-78bb3676fe8326e0fe2b60daad8bf524e4625d4e.tar.gz
sssd-78bb3676fe8326e0fe2b60daad8bf524e4625d4e.tar.xz
sssd-78bb3676fe8326e0fe2b60daad8bf524e4625d4e.zip
MONITOR: Enable an implicit files domain if one is not configured
If SSSD is compiled with --enable-files-domain, the loading of the domains changes such that: * if no domain with id_provider=files exists in the config file, an implicit SSSD files domain is added * this domain is always first in the list The administrator is free to create a files domain in the config file himself and either place it at the end of the list or not enable it at all. Resolves: https://pagure.io/SSSD/sssd/issue/3112 Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r--src/conf_macros.m413
1 files changed, 13 insertions, 0 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4
index 427b0e08d..749e7694f 100644
--- a/src/conf_macros.m4
+++ b/src/conf_macros.m4
@@ -903,3 +903,16 @@ AC_DEFUN([WITH_SECRETS_DB_PATH],
AC_SUBST(secdbpath)
AC_DEFINE_UNQUOTED(SECRETS_DB_PATH, "$config_secdbpath", [Path to the SSSD Secrets databases])
])
+
+AC_ARG_ENABLE([files-domain],
+ [AS_HELP_STRING([--enable-files-domain],
+ [If this feature is enabled, then SSSD always enables
+ a domain with id_provider=files even if the domain
+ is not specified in the config file
+ [default=no]])],
+ [enable_files_domain=$enableval],
+ [enable_files_domain=no])
+AS_IF([test x$enable_files_domain = xyes],
+ AC_DEFINE_UNQUOTED([ADD_FILES_DOMAIN], [1],
+ [whether to build unconditionally enable files domain]))
+AM_CONDITIONAL([ADD_FILES_DOMAIN], [test x$enable_files_domain = xyes])