]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch by Tom Schutter <tom@platte.com>: Added some more doc, fixed product description.
authorterry%mozilla.org <>
Fri, 19 Nov 1999 01:29:58 +0000 (01:29 +0000)
committerterry%mozilla.org <>
Fri, 19 Nov 1999 01:29:58 +0000 (01:29 +0000)
contrib/gnats2bz.pl

index e340bd14843a35536f28415ae90cdd2543c36c82..b4d8f45e3c679c19640da4b5ff4f96ece3dab5fd 100644 (file)
 #   8) Create a new, empty Bugzilla database.
 #   9) Import the data using the command:
 #      mysql -uroot -p'ROOT_PASSWORD' bugs < gnats2bz_data.sql
-#   10) Verify that the database is ok.  If it is not, goto step 2.
+#   10) Update the shadow directory with the command:
+#       cd $BUGZILLA_DIR; ./processmail regenerate
+#   11) Run a sanity check by visiting the sanitycheck.cgi page.
+#   12) Manually verify that the database is ok.  If it is not, goto step 2.
 #
 # Important notes:
 #   Confidential is not mapped or exported.
@@ -744,7 +747,7 @@ sub write_non_bugs_tables {
     foreach $categories_record (@categories_list) {
         my($component) = SqlQuote($default_component);
         my($product) = SqlQuote(@$categories_record[0]);
-        my($description) = SqlQuote($default_component_description);
+        my($description) = SqlQuote(@$categories_record[1]);
         my($initialowner) = SqlQuote(@$categories_record[2] . $username_suffix);
 
         print DATA "\ninsert into products (\n";