diff options
author | Greg Hudson <ghudson@mit.edu> | 2012-04-26 04:33:48 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2012-04-26 04:33:48 +0000 |
commit | d85fbcebd2d4880972e8565a3d5aba492ef59431 (patch) | |
tree | 2eea96479aea9dcc09d1545caa8f6a046a26d56f /src/tests/gssapi/t_gssapi.py | |
parent | 60ccf0f7dc305b89179df2454b95a021fbcb09cb (diff) | |
download | krb5-d85fbcebd2d4880972e8565a3d5aba492ef59431.tar.gz krb5-d85fbcebd2d4880972e8565a3d5aba492ef59431.tar.xz krb5-d85fbcebd2d4880972e8565a3d5aba492ef59431.zip |
Flip the default of start_kadmind in k5test.py
Very few Python tests need kadmind, so it makes more sense to have to
turn it on than to have to turn it off.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25825 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/gssapi/t_gssapi.py')
-rw-r--r-- | src/tests/gssapi/t_gssapi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/gssapi/t_gssapi.py b/src/tests/gssapi/t_gssapi.py index e640e0231d..3ace215db8 100644 --- a/src/tests/gssapi/t_gssapi.py +++ b/src/tests/gssapi/t_gssapi.py @@ -7,7 +7,7 @@ for realm in multipass_realms(): ### Test acceptor name behavior. -realm = K5Realm(start_kadmind=False) +realm = K5Realm() # Create some host-based principals and put most of them into the # keytab. Rename one principal so that the keytab name matches the @@ -84,7 +84,7 @@ realm.stop() # and the principal for the mismatching hostname in the keytab. ignore_conf = { 'all' : { 'libdefaults' : { 'ignore_acceptor_hostname' : 'true' } } } -realm = K5Realm(krb5_conf=ignore_conf, start_kadmind=False) +realm = K5Realm(krb5_conf=ignore_conf) realm.run_kadminl('addprinc -randkey host/-nomatch-') realm.run_kadminl('xst host/-nomatch-') output = realm.run_as_client(['./t_accname', 'host/-nomatch-', |