I have not signed the agreement. I will make an effort today to sign
it. Does it matter if I sign it on behalf of the company or myself?
Thanks.
On Tue, Mar 27, 2012 at 4:45 AM, Joseph Anthony Pasquale Holsten
(JIRA) <oss-tickets@opscode.com> wrote:
>
> [ http://tickets.opscode.com/browse/COOK-967?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>
> Joseph Anthony Pasquale Holsten resolved COOK-967.
> --------------------------------------------------
>
> Resolution: Fixed
>
> Tim: have you signed the CLA? If not, could you check out http://wiki.opscode.com/display/chef/How+to+Contribute+to+Opscode+Cookbooks ?
>
> Thanks for tracking this down!
>
>> passenger_apache2 relies on apache recipe to create a .load file but the apache2 module does not create one in debian based distros
>> -----------------------------------------------------------------------------------------------------------------------------------
>>
>> Key: COOK-967
>> URL: http://tickets.opscode.com/browse/COOK-967
>> Project: Chef Cookbooks
>> Issue Type: Bug
>> Components: passenger_apache2
>> Environment: linux, ubuntu
>> Reporter: Tim Uckun
>> Priority: Critical
>>
>> The passenger_apache2 module calls
>>
>> apache_module "passenger" do
>> module_path node[:passenger][:module_path]
>> end
>>
>> but the apache module does not create the load file if the distro is debian based. It should do this.
>>
>> include_recipe "passenger_apache2"
>> template "#{node[:apache][:dir]}/mods-available/passenger.conf" do
>> cookbook "passenger_apache2"
>> source "passenger.conf.erb"
>> owner "root"
>> group "root"
>> mode "644"
>> end
>> file "#{node[:apache][:dir]}/mods-available/passenger.load" do
>> content "LoadModule passenger_module #{node[:passenger][:module_path]}\n"
>> mode 0644
>> end
>> apache_module "passenger" do
>> module_path node[:passenger][:module_path]
>> enable true
>> end
>>
>
> –
> This message is automatically generated by JIRA.
> For more information on JIRA, see:
http://www.atlassian.com/software/jira
>
>
I'm getting burned by this too on an Ubuntu 11.10 system. After I added "ubuntu" to the list of platforms for which it creates the .load file, it worked.
Let me know if there's any other info I can provide to help debug this.
What was the original motivation for not creating the .load file on Debian-based distros?