This repository was archived by the owner on Mar 30, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +20
-14
lines changed Expand file tree Collapse file tree 5 files changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ platforms:
1313 - name : ubuntu-12.04
1414 run_list :
1515 - recipe[apt]
16+ - name : ubuntu-14.04
17+ run_list :
18+ - recipe[apt]
1619
1720suites :
1821 - name : default
Original file line number Diff line number Diff line change @@ -2,10 +2,17 @@ nginx Cookbook CHANGELOG
22========================
33This file is used to list changes made in each version of the nginx cookbook.
44
5+ v2.7.7 / 2016-06-14
6+ ==================
7+
8+ * Fixed the ohai recipe to work with V4.1.0 of the ohai cookbook.
9+ * Added Test Kitchen tests for Ubuntu 14.04.
10+ * Version bumped gems in the Gemfile including Berkshelf, rubocop, foodcritic.
11+
512v2.7.6 / 2015-03-17
613==================
714
8- * Bugfix sites do not need a .conf suffix anymore, [ #338 ] [ ] [ @runningman84 ] [ ]
15+ * Bugfix sites do not need a .conf suffix anymore, [ #338 ] [ ] [ @runningman84 ] [ ]
916
1017v2.7.5 (2015-03-17)
1118-------------------
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22
33group :lint do
4- gem 'foodcritic' , '~> 4 .0'
5- gem 'rubocop' , '~> 0.27 .0'
4+ gem 'foodcritic' , '~> 6.3 .0'
5+ gem 'rubocop' , '~> 0.40 .0'
66end
77
88group :unit do
9- gem 'berkshelf' , '~> 3.2 .0'
9+ gem 'berkshelf' , '~> 4.3 .0'
1010 gem 'chefspec' , '~> 4.1.0'
1111end
1212
Original file line number Diff line number Diff line change 33maintainer_email '[email protected] ' 44license 'Apache 2.0'
55description 'Installs and configures nginx'
6- version '2.7.6 '
6+ version '2.7.7 '
77
88recipe 'nginx' , 'Installs nginx package and sets up configuration with Debian apache style with sites-enabled/sites-available'
99recipe 'nginx::source' , 'Installs nginx from source and sets up configuration with Debian apache style with sites-enabled/sites-available'
1010
1111depends 'apt' , '~> 2.2'
1212depends 'bluepill' , '~> 2.3'
1313depends 'build-essential' , '~> 2.0'
14- depends 'ohai' , '~> 2 .0'
14+ depends 'ohai' , '~> 4.1 .0'
1515depends 'runit' , '~> 1.2'
1616depends 'yum-epel' , '~> 0.3'
1717
Original file line number Diff line number Diff line change 2424 action :nothing
2525end
2626
27- template "#{ node [ 'ohai' ] [ 'plugin_path' ] } /nginx.rb" do
28- source 'plugins/nginx.rb.erb'
29- owner 'root'
30- group node [ 'root_group' ]
31- mode '0755'
27+ ohai_plugin 'nginx' do
28+ source_file 'plugins/nginx.rb.erb'
29+ resource :template
3230 notifies :reload , 'ohai[reload_nginx]' , :immediately
33- end
34-
35- include_recipe 'ohai::default'
31+ end
You can’t perform that action at this time.
0 commit comments