Blob Blame History Raw
--- bugzilla-3.6.6/Bugzilla/Constants.pm	2011-08-05 15:42:01.768441860 +0200
+++ bugzilla-3.6.6-rw/Bugzilla/Constants.pm	2011-08-05 15:44:50.342628808 +0200
@@ -539,18 +539,18 @@ sub bz_locations {
         'cgi_path'    => $libpath,
         'templatedir' => "$libpath/template",
         'project'     => $project,
-        'localconfig' => "$libpath/$localconfig",
-        'datadir'     => "$libpath/$datadir",
-        'attachdir'   => "$libpath/$datadir/attachments",
+        'localconfig' => "/etc/bugzilla/$localconfig",
+        'datadir'     => "/var/lib/bugzilla/$datadir",
+        'attachdir'   => "/var/lib/bugzilla/$datadir/attachments",
         'skinsdir'    => "$libpath/skins",
-        'graphsdir'   => "$libpath/graphs",
+        'graphsdir'   => "/var/lib/bugzilla/graphs",
         # $webdotdir must be in the web server's tree somewhere. Even if you use a 
         # local dot, we output images to there. Also, if $webdotdir is 
         # not relative to the bugzilla root directory, you'll need to 
         # change showdependencygraph.cgi to set image_url to the correct 
         # location.
         # The script should really generate these graphs directly...
-        'webdotdir'   => "$libpath/$datadir/webdot",
+        'webdotdir'   => "/var/lib/bugzilla/$datadir/webdot",
         'extensionsdir' => "$libpath/extensions",
     };
 }