diff options
author | lpsolit%gmail.com <> | 2005-06-15 05:09:23 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-06-15 05:09:23 +0000 |
commit | 61ffaf7db92f2022556def1a0e864c26bbbc410c (patch) | |
tree | b866b62428d37236936f0f515f2a7560d9a03d4d /checksetup.pl | |
parent | Bug 255685: Docs should mention mysql-devel RPM is required (diff) | |
download | bugzilla-61ffaf7db92f2022556def1a0e864c26bbbc410c.tar.gz bugzilla-61ffaf7db92f2022556def1a0e864c26bbbc410c.tar.bz2 bugzilla-61ffaf7db92f2022556def1a0e864c26bbbc410c.zip |
Bug 274266: Server type should not be hardcoded in SQL values - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-x | checksetup.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/checksetup.pl b/checksetup.pl index d1068bbbd..5d3071114 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -53,7 +53,7 @@ # - set defaults for local configuration variables # - create and populate the data directory after installation # - set the proper rights for the *.cgi, *.html, etc. files -# - verify that the code can access MySQL +# - verify that the code can access the database server # - creates the database 'bugs' if it does not exist # - creates the tables inside the database if they don't exist # - automatically changes the table definitions if they are from @@ -675,8 +675,8 @@ LocalVar('db_host', q[ # How to access the SQL database: # $db_host = 'localhost'; # where is the database? -$db_name = 'bugs'; # name of the MySQL database -$db_user = 'bugs'; # user to attach to the MySQL database +$db_name = 'bugs'; # name of the SQL database +$db_user = 'bugs'; # user to attach to the SQL database # Sometimes the database server is running on a non-standard # port. If that's the case for your database server, set this @@ -1490,8 +1490,8 @@ if ($my_db_check) { printf("Checking for %15s %-9s ", $sql_server, "(v$sql_want)") unless $silent; my $sql_vers = $dbh->bz_server_version; - # Check what version of MySQL is installed and let the user know - # if the version is too old to be used with Bugzilla. + # Check what version of the database server is installed and let + # the user know if the version is too old to be used with Bugzilla. if ( vers_cmp($sql_vers,$sql_want) > -1 ) { print "ok: found v$sql_vers\n" unless $silent; } else { |