[Rt-commit] r12850 - in rt/branches/3.8-TESTING: .
falcone at bestpractical.com
falcone at bestpractical.com
Tue Jun 3 15:29:01 EDT 2008
Author: falcone
Date: Tue Jun 3 15:28:59 2008
New Revision: 12850
Modified:
rt/branches/3.8-TESTING/ (props changed)
rt/branches/3.8-TESTING/lib/RT/Installer.pm
Log:
Modified: rt/branches/3.8-TESTING/lib/RT/Installer.pm
==============================================================================
--- rt/branches/3.8-TESTING/lib/RT/Installer.pm (original)
+++ rt/branches/3.8-TESTING/lib/RT/Installer.pm Tue Jun 3 15:28:59 2008
@@ -266,6 +266,24 @@
}
if ( open my $fh, '>', $file ) {
+ print $fh <<EOF;
+# Any configuration directives you include here will override
+# RT's default configuration file, RT_Config.pm
+#
+# To include a directive here, just copy the equivalent statement
+# from RT_Config.pm and change the value. We've included a single
+# sample value below.
+#
+# This file is actually a perl module, so you can include valid
+# perl code, as well.
+#
+# The converse is also true, if this file isn't valid perl, you're
+# going to run into trouble. To check your SiteConfig file, use
+# this comamnd:
+#
+# perl -c /path/to/your/etc/RT_SiteConfig.pm
+
+EOF
for ( keys %{$RT::Installer->{InstallConfig}} ) {
if (defined $RT::Installer->{InstallConfig}{$_}) {
# remove obsolete settings we'll add later
More information about the Rt-commit
mailing list