Sha256: 60c0f96d4213e5b9ae4c137b27a812f58a56996663a6672c66c4fd9ffc5e9379

Contents?: true

Size: 751 Bytes

Versions: 48

Compression:

Stored size: 751 Bytes

Contents

Puppet::Parser::Functions::newfunction(
  :binary_file,
  :type => :rvalue,
  :arity => 1,
:doc => <<-DOC
Loads a binary file from a module or file system and returns its contents as a Binary.

The argument to this function should be a `<MODULE NAME>/<FILE>`
reference, which will load `<FILE>` from a module's `files`
directory. (For example, the reference `mysql/mysqltuner.pl` will load the
file `<MODULES DIRECTORY>/mysql/files/mysqltuner.pl`.)

This function also accepts an absolute file path that allows reading
binary file content from anywhere on disk.

An error is raised if the given file does not exists.

To search for the existence of files, use the `find_file()` function.

- since 4.8.0
DOC
) do |args|
  Error.is4x('binary_file')
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
puppet-5.0.0 lib/puppet/parser/functions/binary_file.rb
puppet-5.0.0-x86-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-5.0.0-x64-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-5.0.0-universal-darwin lib/puppet/parser/functions/binary_file.rb
puppet-4.10.4 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.4-x86-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.4-x64-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.4-universal-darwin lib/puppet/parser/functions/binary_file.rb
puppet-4.10.1 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.1-x86-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.1-x64-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.1-universal-darwin lib/puppet/parser/functions/binary_file.rb
puppet-4.10.0 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.0-x86-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.0-x64-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.10.0-universal-darwin lib/puppet/parser/functions/binary_file.rb
puppet-4.9.4 lib/puppet/parser/functions/binary_file.rb
puppet-4.9.4-x86-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.9.4-x64-mingw32 lib/puppet/parser/functions/binary_file.rb
puppet-4.9.4-universal-darwin lib/puppet/parser/functions/binary_file.rb