* default.exp: Add dict_file entry (and create one) for kdc.conf
authorEzra Peisach <epeisach@mit.edu>
Thu, 12 Oct 2000 16:07:46 +0000 (16:07 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 12 Oct 2000 16:07:46 +0000 (16:07 +0000)
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

src/tests/dejagnu/config/ChangeLog
src/tests/dejagnu/config/default.exp

index a8950471a206bb729c5291911e81596d41c2c145..08098d53bbf422d1df87287b014915eb1a9c7ca1 100644 (file)
@@ -1,3 +1,7 @@
+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
index d5112d6b05c8daaa4403fe148c734d520acea06f..8e534d1cdaac55ad68c5ac38b4b64c17d1a796e8 100644 (file)
@@ -431,6 +431,7 @@ proc setup_kerberos_files { } {
        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
@@ -459,6 +460,13 @@ proc setup_kerberos_files { } {
        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
 }