Skip to content

Instantly share code, notes, and snippets.

@binford2k
Created February 28, 2019 22:39
Show Gist options
  • Save binford2k/70cc7267b49a8fb3e5829697bba42f02 to your computer and use it in GitHub Desktop.
Save binford2k/70cc7267b49a8fb3e5829697bba42f02 to your computer and use it in GitHub Desktop.
Puppet::Functions.create_function(:local_file) do
dispatch :load do
param 'String', :path
end
def load(path)
Puppet::FileSystem.read_preserve_line_endings(path)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment