krb5_opts.h revision 4f2e932acd5266e9d4e3f55966baafbdbd2ae210
404N/A/*
404N/A SSSD
404N/A
404N/A Authors:
404N/A Stephen Gallagher <sgallagh@redhat.com>
404N/A
404N/A Copyright (C) 2012 Red Hat
404N/A
404N/A This program is free software; you can redistribute it and/or modify
404N/A it under the terms of the GNU General Public License as published by
404N/A the Free Software Foundation; either version 3 of the License, or
404N/A (at your option) any later version.
404N/A
404N/A This program is distributed in the hope that it will be useful,
404N/A but WITHOUT ANY WARRANTY; without even the implied warranty of
404N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
404N/A GNU General Public License for more details.
404N/A
404N/A You should have received a copy of the GNU General Public License
404N/A along with this program. If not, see <http://www.gnu.org/licenses/>.
404N/A*/
404N/A
404N/A#ifndef KRB5_OPTS_H_
404N/A#define KRB5_OPTS_H_
404N/A
404N/A#include "src/providers/data_provider.h"
404N/A
404N/Astruct dp_option default_krb5_opts[] = {
404N/A { "krb5_server", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_backup_server", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_ccachedir", DP_OPT_STRING, { DEFAULT_CCACHE_DIR }, NULL_STRING },
404N/A { "krb5_ccname_template", DP_OPT_STRING, { DEFAULT_CCNAME_TEMPLATE }, NULL_STRING},
404N/A { "krb5_auth_timeout", DP_OPT_NUMBER, { .number = 6 }, NULL_NUMBER },
404N/A { "krb5_keytab", DP_OPT_STRING, { "/etc/krb5.keytab" }, NULL_STRING },
404N/A { "krb5_validate", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE },
404N/A { "krb5_kpasswd", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_backup_kpasswd", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_store_password_if_offline", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE },
404N/A { "krb5_renewable_lifetime", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_lifetime", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_renew_interval", DP_OPT_NUMBER, NULL_NUMBER, NULL_NUMBER },
404N/A { "krb5_use_fast", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_fast_principal", DP_OPT_STRING, NULL_STRING, NULL_STRING },
404N/A { "krb5_canonicalize", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE },
404N/A DP_OPTION_TERMINATOR
404N/A};
404N/A
404N/A#endif /* KRB5_OPTS_H_ */
404N/A