[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
mmmpork.
Files modified:
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]](https://www.dreamwidth.org/img/silk/identity/user.png)
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" --------------------------------------------------------------------------------