Remove more redundant configuration values from krb5.conf.

ticket 1358
This commit is contained in:
Jan Cholasta 2011-10-12 08:39:57 +02:00 committed by Rob Crittenden
parent 0d823ddc4e
commit 592bf62161
2 changed files with 0 additions and 12 deletions

View File

@ -23,12 +23,6 @@
.$DOMAIN = $REALM
$DOMAIN = $REALM
[appdefaults]
pam = {
debug = false
krb4_convert = false
}
[dbmodules]
$REALM = {
db_library = ipadb.so

View File

@ -551,12 +551,6 @@ def configure_krb5_conf(fstore, cli_basedn, cli_realm, cli_domain, cli_server, c
opts.append({'name':'domain_realm', 'type':'section', 'value':dropts})
opts.append({'name':'empty', 'type':'empty'})
#[appdefaults]
pamopts = [{'name':'debug', 'type':'option', 'value':'false'},
{'name':'krb4_convert', 'type':'option', 'value':'false'}]
appopts = [{'name':'pam', 'type':'subsection', 'value':pamopts}]
opts.append({'name':'appdefaults', 'type':'section', 'value':appopts})
logging.debug("Writing Kerberos configuration to %s:\n%s"
% (filename, krbconf.dump(opts)))