Skip to content

Instantly share code, notes, and snippets.

@gislifreyr
Last active October 29, 2015 17:43
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 gislifreyr/9872e71673f86dae55c3 to your computer and use it in GitHub Desktop.
Save gislifreyr/9872e71673f86dae55c3 to your computer and use it in GitHub Desktop.
Facter.add(:javaORnode) do
setcode do
javaORnode = `/usr/bin/which java 2>/dev/null`.empty? ? 'node' : 'java'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment