diff options
author | nfagerlund <nick.fagerlund@gmail.com> | 2011-01-25 17:57:13 -0800 |
---|---|---|
committer | nfagerlund <nick.fagerlund@gmail.com> | 2011-01-25 17:57:13 -0800 |
commit | 682f12a91fcfcf01a243e886e9ccad7f1f3780ee (patch) | |
tree | 5488c3130f581a79415cdf35af17e04c8eadb12c /lib/puppet/parser | |
parent | e0eaf3a40d1c38ef22ccd4ed43f66f9936c71a88 (diff) | |
parent | 86a2a0031fdad032003d053244a3baa04c8f2b81 (diff) | |
download | puppet-682f12a91fcfcf01a243e886e9ccad7f1f3780ee.tar.gz puppet-682f12a91fcfcf01a243e886e9ccad7f1f3780ee.tar.xz puppet-682f12a91fcfcf01a243e886e9ccad7f1f3780ee.zip |
Merge branch 'ticket/2.6.next/5944' into 2.6.next
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r-- | lib/puppet/parser/functions/defined.rb | 34 |
1 files changed, 28 insertions, 6 deletions
diff --git a/lib/puppet/parser/functions/defined.rb b/lib/puppet/parser/functions/defined.rb index 90632af2f..2aeaa9ba0 100644 --- a/lib/puppet/parser/functions/defined.rb +++ b/lib/puppet/parser/functions/defined.rb @@ -1,10 +1,32 @@ # Test whether a given class or definition is defined -Puppet::Parser::Functions::newfunction(:defined, :type => :rvalue, :doc => "Determine whether a given - type is defined, either as a native type or a defined type, or whether a class is defined. - This is useful for checking whether a class is defined and only including it if it is. - This function can also test whether a resource has been defined, using resource references - (e.g., `if defined(File['/tmp/myfile']) { ... }`). This function is unfortunately - dependent on the parse order of the configuration when testing whether a resource is defined.") do |vals| +Puppet::Parser::Functions::newfunction(:defined, :type => :rvalue, :doc => "Determine whether + a given class or resource type is defined. This function can also determine whether a + specific resource has been declared. Returns true or false. Accepts class names, + type names, and resource references. + + The `defined` function checks both native and defined types, including types + provided as plugins via modules. Types and classes are both checked using their names: + + defined(\"file\") + defined(\"customtype\") + defined(\"foo\") + defined(\"foo::bar\") + + Resource declarations are checked using resource references, e.g. + `defined( File['/tmp/myfile'] )`. Checking whether a given resource + has been declared is, unfortunately, dependent on the parse order of + the configuration, and the following code will not work: + + if defined(File['/tmp/foo']) { + notify(\"This configuration includes the /tmp/foo file.\") + } + file {\"/tmp/foo\": + ensure => present, + } + + However, this order requirement refers to parse order only, and ordering of + resources in the configuration graph (e.g. with `before` or `require`) does not + affect the behavior of `defined`.") do |vals| result = false vals = [vals] unless vals.is_a?(Array) vals.each do |val| |