Skip to content

Instantly share code, notes, and snippets.

@mmoll
Created July 12, 2014 12:32
Show Gist options
  • Save mmoll/d158836a73f262c28dc2 to your computer and use it in GitHub Desktop.
Save mmoll/d158836a73f262c28dc2 to your computer and use it in GitHub Desktop.
custom fact to return environment on Puppet 3+
require 'puppet'
if Facter.value(:puppetversion).to_i >= 3
Facter.add(:environment) do
setcode do
Puppet[:environment]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment