Skip to content

Instantly share code, notes, and snippets.

@discreet
Last active September 22, 2016 16:55
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 discreet/1491a17dfcc7be05de33ee63ac91f3f0 to your computer and use it in GitHub Desktop.
Save discreet/1491a17dfcc7be05de33ee63ac91f3f0 to your computer and use it in GitHub Desktop.
Find the HomeDir layout with a Fact to set the template command accordingly
require 'facter'
Facter.add("homedir_layout") do
confine :osfamily => 'RedHat'
setcode do
if File.exists?("/home/local")
layout = 'legacy'
else
layout = 'current'
end
layout
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment