diff options
author | Luke Kanies <luke@madstop.com> | 2008-10-17 09:14:43 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-10-17 09:14:43 -0500 |
commit | 9742c26310e6b30095651cb4e224c681603af1ff (patch) | |
tree | 59bee58e80d1e5687156deb2664d604583decc7e /lib/puppet | |
parent | 8aee40de69e6fe8d67ab58a2e223443b15820584 (diff) | |
download | puppet-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>
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/type.rb | 3 |
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 |