Skip to content

Commit

Permalink
Merge PR#219 - Explicity set Upstart provider
Browse files Browse the repository at this point in the history
Explicity set the upstart provider for cgroups.
  • Loading branch information
Tom Duffield committed Oct 29, 2014
1 parent 70c46e3 commit c492b54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ Attribute deprecations:
* container LWRP public_port attribute: use port attribute instead
* container LWRP networking attribute: use net attribute instead

## 0.35.3 (unreleased)
## 0.35.3
* Bugfix: [#217][]: Explicitly set key and keyserver for docker apt repository.
* Improvement: Pull in sysv init.d script changes from upstream.
* Bugfix: [#219][]: Explicitly set Upstart provider for Ubuntu 14.04 and 14.10.
* Improvement: [#220][]: Create graph directory if it is specified.

## 0.35.2
Expand Down
2 changes: 1 addition & 1 deletion recipes/cgroups.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
service 'cgroup-lite' do
action :start
# WORKAROUND: CHEF-5276, fixed in Chef 11.14
provider Chef::Provider::Service::Upstart if node['platform_version'] == '14.04'
provider Chef::Provider::Service::Upstart if %w(14.04 14.10).include?(node['platform_version'])
end
end
end

0 comments on commit c492b54

Please sign in to comment.