summaryrefslogtreecommitdiffstats
path: root/ipalib/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/config.py')
-rw-r--r--ipalib/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipalib/config.py b/ipalib/config.py
index a0a33b401..c55c47c8a 100644
--- a/ipalib/config.py
+++ b/ipalib/config.py
@@ -25,13 +25,15 @@ DEFAULT_CONF='/etc/ipa/ipa.conf'
def generate_env(d={}):
default = dict(
- server_context = False,
+ server_context = True,
query_dns = True,
verbose = False,
interactive = True,
server = LazyIter(get_servers),
realm = LazyProp(get_realm),
domain = LazyProp(get_domain),
+ container_user='cn=users,cn=accounts',
+ basedn='dc=example,dc=com',
)
for key, value in d.iteritems():
if key in default and type(default[key]) in (LazyIter, LazyProp):