summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-10-17 09:14:43 -0500
committerLuke Kanies <luke@madstop.com>2008-10-17 09:14:43 -0500
commit9742c26310e6b30095651cb4e224c681603af1ff (patch)
tree59bee58e80d1e5687156deb2664d604583decc7e
parent8aee40de69e6fe8d67ab58a2e223443b15820584 (diff)
downloadpuppet-9742c26310e6b30095651cb4e224c681603af1ff.tar.gz
puppet-9742c26310e6b30095651cb4e224c681603af1ff.tar.xz
puppet-9742c26310e6b30095651cb4e224c681603af1ff.zip
Fixing resource aliasing to not use global resource aliasing.
I'm not really sure why the 0.24.x-style code got merged in, since master's changes should be more recent. Signed-off-by: Luke Kanies <luke@madstop.com>
-rw-r--r--lib/puppet/type.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb
index 2f4ddf794..85f72f79a 100644
--- a/lib/puppet/type.rb
+++ b/lib/puppet/type.rb
@@ -1457,9 +1457,6 @@ class Type
next
end
- # LAK:FIXME Old-school, add the alias to the class.
- @resource.class.alias(other, @resource)
-
# Newschool, add it to the catalog.
@resource.catalog.alias(@resource, other)
end