[Rt-commit] [svn] r1205 - in rt: . branches/rt-3.3/sbin

autrijus at pallas.eruditorum.org autrijus at pallas.eruditorum.org
Mon Jul 12 13:30:04 EDT 2004


Author: autrijus
Date: Mon Jul 12 13:30:03 2004
New Revision: 1205

Modified:
   rt/   (props changed)
   rt/branches/rt-3.3/sbin/rt-setup-database.in
Log:
 ----------------------------------------------------------------------
 r5976 at not:  autrijus | 2004-07-12T17:29:13.392510Z
 
 * The warning on missing ACL files used $RT::EtcPath even if it's
   reading it fro other paths.  Fixed.
 ----------------------------------------------------------------------


Modified: rt/branches/rt-3.3/sbin/rt-setup-database.in
==============================================================================
--- rt/branches/rt-3.3/sbin/rt-setup-database.in	(original)
+++ rt/branches/rt-3.3/sbin/rt-setup-database.in	Mon Jul 12 13:30:03 2004
@@ -275,15 +275,15 @@
     }
     elsif ( $RT::DatabaseType =~ /^mysql$/i ) {
         do $base_path . "/acl.mysql"
-          || die "Couldn't find ACLS for mysql in " . $RT::EtcPath . "\n" . $@;
+          || die "Couldn't find ACLS for mysql in $base_path\n" . $@;
     }
     elsif ( $RT::DatabaseType =~ /^Sybase$/i ) {
         do $base_path . "/acl.Sybase"
-          || die "Couldn't find ACLS for Sybase in " . $RT::EtcPath . "\n" . $@;
+          || die "Couldn't find ACLS for Sybase in $base_path\n" . $@;
     }
     elsif ( $RT::DatabaseType =~ /^informix$/i ) {
         do $base_path . "/acl.Informix"
-          || die "Couldn't find ACLS for Informix in " . $RT::EtcPath . "\n" . $@;
+          || die "Couldn't find ACLS for Informix in $base_path\n" . $@;
     }
     elsif ( $RT::DatabaseType =~ /^SQLite$/i ) {
         return;


More information about the Rt-commit mailing list