Skip to content

Instantly share code, notes, and snippets.

@mattdeboard
Created February 24, 2014 21:22
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 mattdeboard/9197403 to your computer and use it in GitHub Desktop.
Save mattdeboard/9197403 to your computer and use it in GitHub Desktop.
Facter.add("is_vagrant") do
setcode do
vagrant = false
if File.exist? "/home/vagrant"
vagrant = true
end
vagrant
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment