]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Remove some real configuration data that had crept into bzdbcopy.pl.
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Thu, 16 Dec 2010 19:26:19 +0000 (11:26 -0800)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Thu, 16 Dec 2010 19:26:19 +0000 (11:26 -0800)
https://bugzilla.mozilla.org/show_bug.cgi?id=619581

contrib/bzdbcopy.pl

index 11bd341f40d95fcd912a39176aebbb52e7fcaa7d..688bc28a2fd8769cc872132d38b76007984bc3c7 100755 (executable)
@@ -32,14 +32,14 @@ use Bugzilla::Util;
 
 # Settings for the 'Source' DB that you are copying from.
 use constant SOURCE_DB_TYPE => 'Mysql';
-use constant SOURCE_DB_NAME => 'bugs_tip';
+use constant SOURCE_DB_NAME => 'bugs';
 use constant SOURCE_DB_USER => 'bugs';
-use constant SOURCE_DB_PASSWORD => 'buGmElateR';
+use constant SOURCE_DB_PASSWORD => '';
 use constant SOURCE_DB_HOST => 'localhost';
 
 # Settings for the 'Target' DB that you are copying to.
-use constant TARGET_DB_TYPE => 'Sqlite';
-use constant TARGET_DB_NAME => 'bugs_tip';
+use constant TARGET_DB_TYPE => 'Pg';
+use constant TARGET_DB_NAME => 'bugs';
 use constant TARGET_DB_USER => 'bugs';
 use constant TARGET_DB_PASSWORD => '';
 use constant TARGET_DB_HOST => 'localhost';