diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-02-11 14:45:43 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-02-11 14:45:43 +0100 |
commit | 6d0ef0f640728b69f1d51ee2eb1e1d91e09e32e7 (patch) | |
tree | bf68917c0f1e34ed6a7078197e99dbfdbecabd34 /Bugzilla/Install | |
parent | 64250f2a4ef73d8b2686d275dc39aee4d389b0e6 (diff) | |
download | bugzilla-6d0ef0f640728b69f1d51ee2eb1e1d91e09e32e7.tar.gz bugzilla-6d0ef0f640728b69f1d51ee2eb1e1d91e09e32e7.tar.xz |
Bug 1131404: checksetup.pl should check if mod_rewrite and mod_version are enabled
r=dkl a=glob
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index d722cc6d7..e9cf230c4 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -50,6 +50,8 @@ use constant APACHE_MODULES => { mod_headers => 'headers_module', mod_env => 'env_module', mod_expires => 'expires_module', + mod_rewrite => 'rewrite_module', + mod_version => 'version_module' }; # These are all of the binaries that we could possibly use that can @@ -522,7 +524,7 @@ sub _missing_apache_modules { return []; } my @missing; - foreach my $module (keys %$modules) { + foreach my $module (sort keys %$modules) { my $ok = _check_apache_module($module, $modules->{$module}, $cmd_info, $output); push(@missing, $module) if !$ok; |