diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-11 07:11:04 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-11 07:11:04 +0100 |
commit | 4a58678de6f0cd1e25b2b3d2f3dd42e0f973f324 (patch) | |
tree | 030d3faa56c7d92f3a4d13917f9f7685ce3f1788 /Bugzilla/Install | |
parent | e23fa261d61319ece1ccfe87a64cf860b02f0eaa (diff) | |
parent | 320b36d4a9aa69e0fa806cd25c84c42d5a36966e (diff) | |
download | bugzilla-4a58678de6f0cd1e25b2b3d2f3dd42e0f973f324.tar.gz bugzilla-4a58678de6f0cd1e25b2b3d2f3dd42e0f973f324.tar.xz |
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Localconfig.pm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index 1ee7aca67..1544e6fac 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -32,12 +32,13 @@ use strict; use Bugzilla::Constants; use Bugzilla::Install::Util qw(bin_loc install_string); -use Bugzilla::Util qw(generate_random_password); +use Bugzilla::Util qw(generate_random_password wrap_hard); use Data::Dumper; use File::Basename qw(dirname); use IO::File; use Safe; +use Term::ANSIColor; use base qw(Exporter); @@ -274,8 +275,10 @@ sub update_localconfig { if (@new_vars) { my $newstuff = join(', ', @new_vars); - print "\n", install_string('lc_new_vars', - { localconfig => $filename, new_vars => $newstuff }), "\n"; + print "\n"; + print colored(install_string('lc_new_vars', { localconfig => $filename, + new_vars => wrap_hard($newstuff, 70) }), + COLOR_ERROR), "\n"; exit; } |