inspec/examples/kitchen-chef/recipes/nginx.rb
Miah Johnson 2a1b1d8e88 Remove all leading newlines.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-31 11:43:44 -07:00

25 lines
534 B
Ruby

# install repositories for nginx
case node['platform']
when 'ubuntu'
# if ubuntu, install
apt_repository 'nginx-php' do
uri 'ppa:nginx/stable'
distribution node['lsb']['codename']
end
when 'centos'
# add repo for Centos 7
yum_repository 'nginx' do
description 'Nginx Repo'
baseurl 'http://nginx.org/packages/centos/7/x86_64'
gpgkey 'http://nginx.org/keys/nginx_signing.key'
action :create
end
end
# install nginx package
package 'nginx'
# start the service
service 'nginx' do
action :start
end