summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/collector.rb
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-10-18 00:22:45 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-10-18 00:22:45 +0000
commitf1ebef038b12231e876510c7247a82f6367a8d45 (patch)
tree88b5b0c1496f32a47eac7dadaff6fa0c5421811c /lib/puppet/parser/collector.rb
parent52105c61ac135cc197910fc3a6c32d43fa8ce6cd (diff)
downloadpuppet-f1ebef038b12231e876510c7247a82f6367a8d45.tar.gz
puppet-f1ebef038b12231e876510c7247a82f6367a8d45.tar.xz
puppet-f1ebef038b12231e876510c7247a82f6367a8d45.zip
Fixing virtual object collection. I apparently broke it when I added rails collection back, and I never created any end-to-end tests.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1805 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/collector.rb')
-rw-r--r--lib/puppet/parser/collector.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/puppet/parser/collector.rb b/lib/puppet/parser/collector.rb
index f3c7949de..1fa314ae2 100644
--- a/lib/puppet/parser/collector.rb
+++ b/lib/puppet/parser/collector.rb
@@ -1,7 +1,7 @@
# An object that collects stored objects from the central cache and returns
# them to the current host, yo.
class Puppet::Parser::Collector
- attr_accessor :type, :scope, :query, :form
+ attr_accessor :type, :scope, :vquery, :rquery, :form
# Collect exported objects.
def collect_exported
@@ -75,10 +75,11 @@ class Puppet::Parser::Collector
objects
end
- def initialize(scope, type, query, form)
+ def initialize(scope, type, equery, vquery, form)
@scope = scope
@type = type
- @query = query
+ @equery = equery
+ @vquery = vquery
@form = form
@tests = []
end
@@ -86,8 +87,8 @@ class Puppet::Parser::Collector
# Does the resource match our tests? We don't yet support tests,
# so it's always true at the moment.
def match?(resource)
- if self.query
- return self.query.call(resource)
+ if self.vquery
+ return self.vquery.call(resource)
else
return true
end