summaryrefslogtreecommitdiffstats
path: root/lib/puppet/transportable.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@reductivelabs.com>2010-01-22 00:48:37 -0800
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit2fa0a489e26fc2512783c67b1b4579a03f8a20a6 (patch)
tree0c0157fe3e854fc5fbfa1bd94fc47c528dffef27 /lib/puppet/transportable.rb
parentaff59926bb8c8e7a136d6e87359e9857a4512da9 (diff)
downloadpuppet-2fa0a489e26fc2512783c67b1b4579a03f8a20a6.tar.gz
puppet-2fa0a489e26fc2512783c67b1b4579a03f8a20a6.tar.xz
puppet-2fa0a489e26fc2512783c67b1b4579a03f8a20a6.zip
Adding parameter validation to Puppet::Resource
This will allow us to remove all of the parameter validation from the other Resource classes. This is possible because resource types defined in the language are visible outside of the parser, via the environment. This will enable lots of code removal and simplication. Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'lib/puppet/transportable.rb')
-rw-r--r--lib/puppet/transportable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/transportable.rb b/lib/puppet/transportable.rb
index 68977dca0..1970d9f1e 100644
--- a/lib/puppet/transportable.rb
+++ b/lib/puppet/transportable.rb
@@ -49,7 +49,7 @@ module Puppet
def to_component
trans = TransObject.new(ref, :component)
@params.each { |param,value|
- next unless Puppet::Type::Component.validattr?(param)
+ next unless Puppet::Type::Component.valid_parameter?(param)
Puppet.debug "Defining %s on %s" % [param, ref]
trans[param] = value
}