Sha256: be0f4ed74165ff11ff8ef3e50ead9fb3a59c75aa6ae22bed94eb688c51a8a2f9

Contents?: true

Size: 1.17 KB

Versions: 8

Compression:

Stored size: 1.17 KB

Contents

#
# Cookbook Name:: nginx
# Recipe:: default
# Author:: AJ Christensen <aj@junglist.gen.nz>
#
# Copyright 2008-2012, Opscode, Inc.
#
# 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 'nginx::ohai_plugin'

case node['nginx']['install_method']
when 'source'
  include_recipe 'nginx::source'
when 'package'
  case node['platform']
  when 'redhat','centos','scientific','amazon','oracle'
    include_recipe 'yum::epel'
  end
  package 'nginx'
  service 'nginx' do
    supports :status => true, :restart => true, :reload => true
    action :enable
  end
  include_recipe 'nginx::commons'
end

service 'nginx' do
  supports :status => true, :restart => true, :reload => true
  action :start
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
server_maint-0.0.8 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.7 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.6 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.5 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.4 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.3 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.2 lib/cookbooks/nginx/recipes/default.rb
server_maint-0.0.1 lib/cookbooks/nginx/recipes/default.rb