summaryrefslogtreecommitdiffstats
path: root/src/util/testrealm.py
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2012-04-26 04:33:48 +0000
committerGreg Hudson <ghudson@mit.edu>2012-04-26 04:33:48 +0000
commitd85fbcebd2d4880972e8565a3d5aba492ef59431 (patch)
tree2eea96479aea9dcc09d1545caa8f6a046a26d56f /src/util/testrealm.py
parent60ccf0f7dc305b89179df2454b95a021fbcb09cb (diff)
downloadkrb5-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/util/testrealm.py')
-rw-r--r--src/util/testrealm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/testrealm.py b/src/util/testrealm.py
index 53f062250..0bf976d40 100644
--- a/src/util/testrealm.py
+++ b/src/util/testrealm.py
@@ -56,10 +56,10 @@ def supplement_path(env):
env['PATH'] = path_prefix + env['PATH']
if args:
- realms = cross_realms(int(args[0]))
+ realms = cross_realms(int(args[0]), start_kadmind=True)
realm = realms[0]
else:
- realm = K5Realm()
+ realm = K5Realm(start_kadmind=True)
env = realm.env_master.copy()
supplement_path(env)