From 12c4879613f51c90239be749a777f480310b1318 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 22 Jan 2009 10:59:46 -0700 Subject: Added ca_host, ca_port, and ca_ssl_port Env variables that Andrew requested --- ipalib/constants.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ipalib/constants.py') diff --git a/ipalib/constants.py b/ipalib/constants.py index e229b466..14f7f25d 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -99,6 +99,11 @@ DEFAULT_CONFIG = ( ('debug', False), ('mode', 'production'), + # CA plugin: + ('ca_host', object), # Set in Env._finalize_core() + ('ca_port', 9180), + ('ca_ssl_port', 9443), + # ******************************************************** # The remaining keys are never set from the values here! # ******************************************************** @@ -116,6 +121,7 @@ DEFAULT_CONFIG = ( # raised. # Set in Env.__init__(): + ('host', object), ('ipalib', object), # The directory containing ipalib/__init__.py ('site_packages', object), # The directory contaning ipalib ('script', object), # sys.argv[0] -- cgit