Skip to content

Instantly share code, notes, and snippets.

@dayglojesus
Created January 26, 2015 20:08
Show Gist options
  • Save dayglojesus/3302a23ef641ae0d6745 to your computer and use it in GitHub Desktop.
Save dayglojesus/3302a23ef641ae0d6745 to your computer and use it in GitHub Desktop.
Referencing the value of another fact
require 'puppet'
Facter.add("node_id") do
confine :operatingsystem => :darwin
setcode do
primary_mac = Facter[:macaddress].value.delete(':')
"node-#{primary_mac}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment