summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-12-06 16:08:56 -0600
committerLuke Kanies <luke@madstop.com>2007-12-06 16:08:56 -0600
commit038b9c8d571581f13acc202a9dbbcf7e1f325ab3 (patch)
tree0fdd235c8d138e4a31757f1cc47fe7c731f9df6c /lib/puppet/parser
parent507406bd44f01e151483f148fadc8d50a9640984 (diff)
downloadpuppet-038b9c8d571581f13acc202a9dbbcf7e1f325ab3.tar.gz
puppet-038b9c8d571581f13acc202a9dbbcf7e1f325ab3.tar.xz
puppet-038b9c8d571581f13acc202a9dbbcf7e1f325ab3.zip
Fixing #923. Resources that are collected on the local
host are no longer marked as not exported.
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/collector.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/puppet/parser/collector.rb b/lib/puppet/parser/collector.rb
index 9dd07f31a..63eb87896 100644
--- a/lib/puppet/parser/collector.rb
+++ b/lib/puppet/parser/collector.rb
@@ -16,7 +16,6 @@ class Puppet::Parser::Collector
method = "collect_#{@form.to_s}"
objects = send(method).each do |obj|
obj.virtual = false
- obj.exported = false if form == :exported
end
if objects.empty?
return false