Skip to content

Instantly share code, notes, and snippets.

@iversond
Created March 2, 2018 20:17
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 iversond/8f9abc5d80aab1c96d08e7ddbfb631c8 to your computer and use it in GitHub Desktop.
Save iversond/8f9abc5d80aab1c96d08e7ddbfb631c8 to your computer and use it in GitHub Desktop.
Custom facter fact to return the first 2 characters as the Fact `app`
Facter.add(:app) do
setcode do
app = Facter.value(:hostname)[0..1]
if app.downcase.match(/lm/)
app = "hr"
end
app.downcase
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment