fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-02-07 07:17 am

[dw-free] Update bin/checkconfig.pl

[commit: http://hg.dwscoalition.org/dw-free/rev/c88e621da04a]

http://bugs.dwscoalition.org/show_bug.cgi?id=60

Add Apache2::RequestRec and Apache2::Request to the list of modules to check
for, when confirming our installation/config. (First committed patch!)

Patch by [personal profile] mmmpork.

Files modified:
  • bin/checkconfig.pl
--------------------------------------------------------------------------------
diff -r 38880ee455a1 -r c88e621da04a bin/checkconfig.pl
--- a/bin/checkconfig.pl	Mon Feb 07 13:41:15 2011 +0800
+++ b/bin/checkconfig.pl	Mon Feb 07 15:17:09 2011 +0800
@@ -184,7 +184,16 @@ my %modules = (
                    'opt' => "Required for country lookup with IP address.",
                },
                "GTop" => {},
+               "Apache2::RequestRec"   => {
+                   'deb' => "libapache2-mod-perl2",
+                   'opt' => "Required for modperl2",
+               },
+               "Apache2::Request"      => {
+                   'deb' => "libapache2-request-perl",
+                   'opt' => "Required for Apache2",
+               },
                );
+
 
 sub check_modules {
     print "[Checking for Perl Modules....]\n"
--------------------------------------------------------------------------------