Since the warning message about missing dictionary is now going to the
proper place (instead of simply syslogging), the logic to detect kadmind
startup is getting confused by the warning message of a dictionary not being in
place.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12754
dc483132-0cff-0310-8789-
dd5450dbe970
+Thu Oct 12 12:06:03 2000 Ezra Peisach <epeisach@mit.edu>
+
+ * default.exp: Add dict_file entry (and create one) for kdc.conf
+
Tue Aug 22 09:47:50 2000 Ezra Peisach <epeisach@mit.edu>
* default.exp: Create a properly formatted krb.conf file. Also
puts $conffile " kdc_ports = 3088"
puts $conffile " default_principal_expiration = 2037.12.31.23.59.59"
puts $conffile " default_principal_flags = -postdateable forwardable"
+ puts $conffile " dict_file = $tmppwd/dictfile"
puts $conffile " \}"
puts $conffile ""
close $conffile
close $conffile
}
+ # Create dictfile file.
+ if ![file exists tmpdir/dictfile] {
+ set dictfile [open tmpdir/dictfile w]
+ puts $dictfile "weak_password"
+ close $dictfile
+ }
+
set last_passname_conf $multipass_name
return 1
}