Module: Opscode::Mysql::Helpers
- Defined in:
- lib/cookbooks/mysql/libraries/helpers.rb
Instance Method Summary collapse
Instance Method Details
#debian_before_squeeze? ⇒ Boolean
23 24 25 |
# File 'lib/cookbooks/mysql/libraries/helpers.rb', line 23 def debian_before_squeeze? (node['platform'] == "debian") && (node['platform_version'].to_f < 6.0) end |
#ubuntu_before_lucid? ⇒ Boolean
27 28 29 |
# File 'lib/cookbooks/mysql/libraries/helpers.rb', line 27 def ubuntu_before_lucid? (node['platform'] == "ubuntu") && (node['platform_version'].to_f < 10.0) end |