Skip to content

Instantly share code, notes, and snippets.

@ulfmagnetics
Created November 28, 2012 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ulfmagnetics/4162753 to your computer and use it in GitHub Desktop.
Save ulfmagnetics/4162753 to your computer and use it in GitHub Desktop.
node platform_version in chef
chef > node.platform_version =~ /^5/
=> 0
chef > node.platform_version =~ /^6/
=> nil
chef > node.platform_version =~ /^5/
=> 0
chef > node.platform_version
=> "5.8"
chef > node.platform_version.to_i
=> 5
chef > node.platform_version.to_f
=> 5.8
chef > node.platform_version.to_f > 5.0
=> true
chef > node.platform_version.to_f > 6.0
=> false
@khalidjshaikh
Copy link

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment