[Pkg-bugzilla-commits] r103 - trunk/bugzilla-2.18/debian/patches

Alexis Sukrieh sukria-guest@costa.debian.org
Sun, 12 Jun 2005 12:46:03 +0000


Author: sukria-guest
Date: 2005-06-12 12:46:02 +0000 (Sun, 12 Jun 2005)
New Revision: 103

Modified:
   trunk/bugzilla-2.18/debian/patches/07_virtualhosting.dpatch
Log:
Better Config.pm for paths under /var/lib

Modified: trunk/bugzilla-2.18/debian/patches/07_virtualhosting.dpatch
===================================================================
--- trunk/bugzilla-2.18/debian/patches/07_virtualhosting.dpatch	2005-06-12 12:36:59 UTC (rev 102)
+++ trunk/bugzilla-2.18/debian/patches/07_virtualhosting.dpatch	2005-06-12 12:46:02 UTC (rev 103)
@@ -32,8 +32,8 @@
 -our $datadir = "/var/lib/bugzilla";
 -our $templatedir = "$libpath/template";
 +our $localconfig = "/etc/bugzilla${xsite}/localconfig";
-+our $datadir = "$libpath/web/data${xsite}";
-+our $templatedir = (-d "$libpath/template${xsite}") ?  "$libpath/template${xsite}" : "$libpath/template";
++our $datadir = "/var/lib/bugzilla/data${xsite}";
++our $templatedir = (-d "$datadir/template${xsite}") ?  "$datadir/template${xsite}" : "$datadir/template";
  our $webdotdir = "$datadir/webdot";
 -our $params_file = "/etc/bugzilla/params";
 +our $params_file = "/etc/bugzilla${xsite}/params";