--- OldEnvironment.py	2004-10-14 17:16:00.000000000 +0000
+++ Environment.py	2004-12-14 15:13:11.000000000 +0000
@@ -22,6 +22,8 @@
 # Todo: Move backup and upgrade from db.py
 #
 
+CENTRAL_CONFIG = '/etc/trac.ini'
+
 import os
 import sys
 import time
@@ -165,7 +167,7 @@
 
     def load_config(self):
         self.cfg = ConfigParser.ConfigParser()
-        self.cfg.read(os.path.join(self.path, 'conf', 'trac.ini'))
+        self.cfg.read([CENTRAL_CONFIG, os.path.join(self.path, 'conf', 'trac.ini')])
 
     def get_config(self, section, name, default=''):
         if not self.cfg.has_option(section, name):

