Skip to content

Instantly share code, notes, and snippets.

@dalen
Created September 6, 2013 14:39
Show Gist options
  • Save dalen/6464749 to your computer and use it in GitHub Desktop.
Save dalen/6464749 to your computer and use it in GitHub Desktop.
# Determines which role a machine has.
# For example for lon2-pl4cassandra-a1 this will return 'pl4cassandra'
Facter.add('role') do
setcode do
if (Facter.fqdn =~ /[[:alpha:]]+\d*-([a-z0-9]+)-[[:alpha:]]+\d+/) == 0 then
next $1
end
nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment