diff options
author | terry%mozilla.org <> | 1999-11-19 02:29:58 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 1999-11-19 02:29:58 +0100 |
commit | cd85543e439f5696cfe9f51d2a58bd31e0daa9aa (patch) | |
tree | 295e42e21cef92bcaea1b4643e4e73ed1f0373d8 /contrib | |
parent | 246bdedab6e0208ec41465dec84f58ab333df71a (diff) | |
download | bugzilla-cd85543e439f5696cfe9f51d2a58bd31e0daa9aa.tar.gz bugzilla-cd85543e439f5696cfe9f51d2a58bd31e0daa9aa.tar.xz |
Patch by Tom Schutter <tom@platte.com>: Added some more doc, fixed product description.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gnats2bz.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/gnats2bz.pl b/contrib/gnats2bz.pl index e340bd148..b4d8f45e3 100644 --- a/contrib/gnats2bz.pl +++ b/contrib/gnats2bz.pl @@ -48,7 +48,10 @@ # 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"; |