diff options
author | Ezra Peisach <epeisach@mit.edu> | 1995-10-07 12:05:58 +0000 |
---|---|---|
committer | Ezra Peisach <epeisach@mit.edu> | 1995-10-07 12:05:58 +0000 |
commit | d91e2c68fa2f9f08ab5cd0cd20600621b79f0be9 (patch) | |
tree | 1287ffb77a02942675171d67e9a9e4ab3a93a2c9 /src/tests/dejagnu/config | |
parent | becc75622240e33b9275cb378bda89720388924c (diff) | |
download | krb5-d91e2c68fa2f9f08ab5cd0cd20600621b79f0be9.tar.gz krb5-d91e2c68fa2f9f08ab5cd0cd20600621b79f0be9.tar.xz krb5-d91e2c68fa2f9f08ab5cd0cd20600621b79f0be9.zip |
Change kdc port specifications in kdc.conf to match current
implementation.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6946 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/dejagnu/config')
-rw-r--r-- | src/tests/dejagnu/config/ChangeLog | 5 | ||||
-rw-r--r-- | src/tests/dejagnu/config/default.exp | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/tests/dejagnu/config/ChangeLog b/src/tests/dejagnu/config/ChangeLog index 941096f37d..7dc7c38fb8 100644 --- a/src/tests/dejagnu/config/ChangeLog +++ b/src/tests/dejagnu/config/ChangeLog @@ -1,3 +1,8 @@ +Sat Oct 7 08:03:43 1995 Ezra Peisach <epeisach@kangaroo.mit.edu> + + * default.exp: Change kdc.conf ports definitions to current + methodology. + Thu Sep 28 18:54:43 1995 Mark Eichin <eichin@cygnus.com> * default.exp: set timeout to 100 since the default of 10 is diff --git a/src/tests/dejagnu/config/default.exp b/src/tests/dejagnu/config/default.exp index 452785efdf..cb7f7d2cac 100644 --- a/src/tests/dejagnu/config/default.exp +++ b/src/tests/dejagnu/config/default.exp @@ -277,16 +277,14 @@ proc setup_kerberos_files { } { if ![file exists tmpdir/kdc.conf] { set conffile [open tmpdir/kdc.conf w] puts $conffile "\[kdcdefaults\]" - puts $conffile " primary_ports = 3085,3086,3087,3088,3089" - puts $conffile " secondary_ports = -1" + puts $conffile " kdc_ports = 3085,3086,3087,3088,3089" puts $conffile "" puts $conffile "\[realms\]" puts $conffile " KRBTEST.COM = \{" - puts $conffile " profile = $tmppwd/krb5.conf" puts $conffile " database_name = $tmppwd/db" puts $conffile " master_key_name = master/key" puts $conffile " master_key_type = des-cbc-md5" - puts $conffile " port = 3088" + puts $conffile " kdc_ports = 3088" puts $conffile " kadmind_port = 3750" puts $conffile " key_stash_file = $tmppwd/stash" puts $conffile " max_life = 1:00:00" |