From dcc6877aa2e2dd63a9dc9c411a9c58feaeb36b9a Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 27 Aug 2013 13:36:41 -0400 Subject: krb5: Fetch ccname template from krb5.conf In order to use the same defaults in all system daemons that needs to know how to generate or search for ccaches we introduce ode here to take advantage of the new option called default_ccache_name provided by libkrb5. If set this variable we establish the same default for all programs that surce it out of krb5.conf therefore providing a consistent experience across the system. Related: https://fedorahosted.org/sssd/ticket/2036 --- src/providers/ad/ad_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/providers/ad/ad_opts.h') diff --git a/src/providers/ad/ad_opts.h b/src/providers/ad/ad_opts.h index 197b97e22..f3b6cd616 100644 --- a/src/providers/ad/ad_opts.h +++ b/src/providers/ad/ad_opts.h @@ -134,7 +134,7 @@ struct dp_option ad_def_krb5_opts[] = { { "krb5_backup_server", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "krb5_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "krb5_ccachedir", DP_OPT_STRING, { DEFAULT_CCACHE_DIR }, NULL_STRING }, - { "krb5_ccname_template", DP_OPT_STRING, { DEFAULT_CCNAME_TEMPLATE }, NULL_STRING}, + { "krb5_ccname_template", DP_OPT_STRING, NULL_STRING, NULL_STRING}, { "krb5_auth_timeout", DP_OPT_NUMBER, { .number = 6 }, NULL_NUMBER }, { "krb5_keytab", DP_OPT_STRING, { "/etc/krb5.keytab" }, NULL_STRING }, { "krb5_validate", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }, -- cgit