diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2015-06-04 10:51:05 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2015-06-14 21:47:20 +0200 |
commit | 64ea4127f463798410a2c20e0261c6b15f60257f (patch) | |
tree | 35591187021deb529f91fb069b3cca7fb225ea71 /src/conf_macros.m4 | |
parent | f4025ea817b3467be1c2e6092014a11fe4547c0d (diff) | |
download | sssd-64ea4127f463798410a2c20e0261c6b15f60257f.tar.gz sssd-64ea4127f463798410a2c20e0261c6b15f60257f.tar.xz sssd-64ea4127f463798410a2c20e0261c6b15f60257f.zip |
IPA: Fetch keytab for 1way trusts
Uses the ipa-getkeytab call to retrieve keytabs for one-way trust
relationships.
https://fedorahosted.org/sssd/ticket/2636
Reviewed-by: Sumit Bose <sbose@redhat.com>
Diffstat (limited to 'src/conf_macros.m4')
-rw-r--r-- | src/conf_macros.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/conf_macros.m4 b/src/conf_macros.m4 index 0ed1694cb..eeba01e1b 100644 --- a/src/conf_macros.m4 +++ b/src/conf_macros.m4 @@ -424,6 +424,20 @@ AC_DEFUN([WITH_TEST_DIR], AC_DEFINE_UNQUOTED(TEST_DIR, "$TEST_DIR", [Directory used for 'make check' temporary files]) ]) +AC_DEFUN([WITH_IPA_GETKEYTAB], + [ AC_ARG_WITH([ipa_getkeytab], + [AC_HELP_STRING([--with-ipa-getkeytab=PATH], + [Path to ipa_getkeytab binary to retrieve keytabs from FreeIPA server [/usr/sbin/ipa-getkeytab]] + ) + ] + ) + IPA_GETKEYTAB_PATH="/usr/sbin/ipa-getkeytab" + if test x"$with_ipa_getkeytab" != x; then + IPA_GETKEYTAB_PATH=$with_ipa_getkeytab + fi + AC_DEFINE_UNQUOTED(IPA_GETKEYTAB_PATH, "$IPA_GETKEYTAB_PATH", [The path to the ipa-getkeytab utility]) + ]) + AC_DEFUN([WITH_NSCD], [ AC_ARG_WITH([nscd], [AC_HELP_STRING([--with-nscd=PATH], |