Bug 83507

Summary: mod_auth_external2 add wrong LoadModule in httpd.conf
Product: Ports & Packages Reporter: Maurizio Giunti <meg>
Component: Individual Port(s)Assignee: freebsd-apache (Nobody) <apache>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Maurizio Giunti 2005-07-15 14:10:11 UTC
Installing mod_auth_external2 add a wrong LoadModule line in httpd.conf.
It adds:
LoadModule auth_external_module libexec/apache2/mod_auth_external.so
instead of
LoadModule external_auth_module libexec/apache2/mod_auth_external.so      
Of course mod_auth_external2 will not work until you change the LoadModule line.

Fix: 

Change LoadModule directive in httpd.conf from:
LoadModule external_auth_module libexec/apache2/mod_auth_external.so      
to 
LoadModule auth_external_module libexec/apache2/mod_auth_external.so
How-To-Repeat: Install Apache2, then install mod_auth_external2
Check /usr/local/etc/apache2/httpd.conf
Comment 1 Pav Lucistnik freebsd_committer freebsd_triage 2005-07-16 22:23:44 UTC
Responsible Changed
From-To: freebsd-ports-bugs->apache

Over to maintainer
Comment 2 Clement Laforet freebsd_committer freebsd_triage 2005-08-01 10:34:37 UTC
State Changed
From-To: open->closed

A fix has been committed. Thanks for the report!