Sha256: d462311cfb346d2dc74ff6cd3d8ef4ddc4d933070e95517c460cde83dc8e666f

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 KB

Contents

#
# Cookbook Name:: passenger_apache2
# Recipe:: mod_rails
#
# Author:: Joshua Timberman (<joshua@opscode.com>)
# Author:: Joshua Sierles (<joshua@37signals.com>)
# Author:: Michael Hale (<mikehale@gmail.com>)
#
# Copyright:: 2009, Opscode, Inc
# Copyright:: 2009, 37signals
# Coprighty:: 2009, Michael Hale
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

include_recipe "passenger_apache2"

if platform?("ubuntu","debian")
  template "#{node[:apache][:dir]}/mods-available/passenger.load" do
    cookbook "passenger_apache2"
    source "passenger.load.erb"
    owner "root"
    group "root"
    mode 0755
  end
end

template "#{node[:apache][:dir]}/mods-available/passenger.conf" do
  cookbook "passenger_apache2"
  source "passenger.conf.erb"
  owner "root"
  group "root"
  mode "644"
end

apache_module "passenger" do
  module_path node[:passenger][:module_path]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fast_food-0.1.2 chef/cookbooks/passenger_apache2/recipes/mod_rails.rb
fast_food-0.1.1 chef/cookbooks/passenger_apache2/recipes/mod_rails.rb
fast_food-0.1.0 chef/cookbooks/passenger_apache2/recipes/mod_rails.rb