Skip to content

Commit

Permalink
Merge pull request #202 from Tritlo/master
Browse files Browse the repository at this point in the history
fixed bug on debian 3.14-1-amd64, fixed #201
  • Loading branch information
Tom Duffield committed Oct 13, 2014
2 parents 23cdd89 + 0eafc0c commit e5f39f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/dep_check.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

when 'debian'
# check kernel.release >= 3.8
unless ::Chef::VersionConstraint.new('>= 3.8').include?(node['kernel']['release'].match(/\d+.\d+.\d+/)[0])
unless ::Chef::VersionConstraint.new('>= 3.8').include?(node['kernel']['release'].match(/\d+.\d+/)[0])
alert_on_error DockerCookbook::Exceptions::InvalidKernelVersion, action, <<-MSG
Due to a bug in LXC, Docker works best on the 3.8 Linux kernel. You are currently running #{node['kernel']['release']}.
It is recommended that you upgrade your kernel to at least 3.8.
Expand Down

0 comments on commit e5f39f3

Please sign in to comment.