Created
January 26, 2015 20:08
-
-
Save dayglojesus/3302a23ef641ae0d6745 to your computer and use it in GitHub Desktop.
Referencing the value of another fact
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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