diff options
author | mkanat%bugzilla.org <> | 2009-10-24 07:30:14 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-10-24 07:30:14 +0200 |
commit | 4adf7f1b401955a1938cfc7a9decdc77af2fab20 (patch) | |
tree | 9c52432a54f1769513b89e1d12ee8fc65960769c /Bugzilla/Install | |
parent | bb7585e3e91f156493eb14d4f052e169bdf0207f (diff) | |
download | bugzilla-4adf7f1b401955a1938cfc7a9decdc77af2fab20.tar.gz bugzilla-4adf7f1b401955a1938cfc7a9decdc77af2fab20.tar.xz |
Bug 519584: Implement a framework for migrating from other bug-trackers, and start with a GNATS importer.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 1bad3b85c..6c18d0213 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -118,6 +118,7 @@ sub FILESYSTEM { 'email_in.pl' => { perms => $ws_executable }, 'sanitycheck.pl' => { perms => $ws_executable }, 'jobqueue.pl' => { perms => $owner_executable }, + 'migrate.pl' => { perms => $owner_executable }, 'install-module.pl' => { perms => $owner_executable }, "$localconfig.old" => { perms => $owner_readable }, diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 86b4813d1..2b545ebb8 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -462,7 +462,9 @@ sub print_module_instructions { } } - if ($output && $check_results->{any_missing} && !ON_WINDOWS) { + if ($output && $check_results->{any_missing} && !ON_WINDOWS + && !$check_results->{hide_all}) + { print install_string('install_all', { perl => $^X }); } if (!$check_results->{pass}) { |