Puppet Function: file_exists

Defined in:
lib/puppet/parser/functions/file_exists.rb
Function type:
Ruby 3.x API

Overview

file_exists()Any

Returns:

  • (Any)


2
3
4
5
6
7
8
# File 'lib/puppet/parser/functions/file_exists.rb', line 2

newfunction(:file_exists, :type => :rvalue) do |args|
  unless args.length == 1
    raise Puppet::Error, "Must provide exactly one arg to file_exists"
  end

  File.exist? args[0]
end